// import {useState} from 'react'
function Splash({navHandler}) {
return (
{/* TODO: Show me only on "/" */}
Watch Party
2
{/* TODO: Show me only to logged-in users */}
{/* TODO: Show me only to logged-out users */}
Rooms
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" */}
)}
function Login() {
return (
{/* TODO: Show me only on "/login" */}
)}
function Room() {
return (
{/* TODO: Show me only on "/room" (and its subroutes) */}
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
{/* 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. 🧐
{/* 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();