// import {useState} from 'react' function Splash({navHandler}) { return (
{/* TODO: Show me only on "/" */}
{/* TODO: Show me only to logged-out users */} {navHandler("profile")}}>Login
{/* TODO: Show me only to logged-in users */} {navHandler("profile")}}> Welcome back, Username ! person

Watch Party

2

{/* TODO: Show me only to logged-in users */} {/* TODO: Show me only to logged-out users */}

Rooms

{/*{room.id}*/}: {/*{room.name}*/}
No rooms yet! You get to be first!
{/* TODO: Show me only if roomList is empty */}
)} function Profile() { return (
{/* TODO: Show me only on "/profile" */}

Watch Party

2

Username person

Welcome to Watch Party!

)} function Login() { return (
{/* TODO: Show me only on "/login" */}

Watch Party

2

Enter your username and password to log in:

{/* TODO: Hide me by default. Show only on failed login attempts */}
Oops, that username and password don't match any of our users!
)} function Room() { return (
{/* TODO: Show me only on "/room" (and its subroutes) */}

Watch Party

2

{/* TODO: Show me by default. Hide when user clicks the edit icon below */}

Chatting in room.name edit

{/* TODO: Hide me by default. Show when user clicks the edit icon above */}

Chatting in

Invite users to this chat at: /rooms/ room_id
Username person
{/* TODO: Replace with the content returned by the API */} Mr Chatterworth Good evening! And how is everyone feeling? big chats gr8 lol Mr Chatterworth Splendid! Chatty Cat Meow meow meow meow meow meow meow meow meow meow meow meow meow meow meow meow meow meow meow meow meow meow meow meow meow meow meow meow meow meow meow meow meow Mr Chatterworth Indeed, M. Cat. Indeed. 🧐

Oops, we can't find that room!

Let's go home and try again.

{/* end .container */}
{/* end .clip */}
)} function App() { const [page, setPage] = React.useState("splash") return ( <> {page == "splash" && } {page == "profile" && } {page == "login" && } {page == "room" && } ); } // ======================================== const rootContainer = document.getElementById("root"); const root = ReactDOM.createRoot(rootContainer); root.render();