使用正确的逻辑运算符完成以下组件。
function App({isLoggedIn}) {
return (
<>
<h1>My Application</h1>
{isLoggedIn @(2) <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 />);