React 入门
React ES6 箭头函数
React ES6 变量
React ES6 数组方法
React ES6 解构
React ES6 扩展
React ES6 三元运算符
React JSX
React 组件
React 属性
React 事件
React 条件
React 列表
React 钩子 useState
React 钩子 useEffect
React CSS 样式

Menu
×
×
正确

练习:

使用正确的逻辑运算符来完成以下组件。

function App({isLoggedIn}) { return ( <> <h1>My Application</h1> {isLoggedIn && <Profile /> } </> ); } const root = ReactDOM.createRoot(document.getElementById('root')); root.render(<App />);

不正确

点击 此处 重试

正确

下一题 ❯
function App({isLoggedIn}) {
  return (
    <>
      <h1>My Application</h1>
      {isLoggedIn  <Profile /> }
    </>
  );
}

const root = ReactDOM.createRoot(document.getElementById('root'));
root.render(<App />);







×

重置分数?