The signed-in and signed-out messages are swapped.
Acceptance criteria
- 1.#value should show Welcome back.
The signed-in and signed-out messages are swapped.
function App() { const signedIn = true return <p id="value">{signedIn ? "Please sign in" : "Welcome back"}</p> } const root = ReactDOM.createRoot(document.getElementById("root")) root.render(<App />)
Output ready when you are
Press Run to render your code, or Submit to validate your solution.