Table of clues

This commit is contained in:
2022-02-21 10:52:08 -06:00
commit 9ed9066247
24 changed files with 28144 additions and 0 deletions

15
client/src/App.jsx Normal file
View File

@@ -0,0 +1,15 @@
import { useGamestate } from './hooks/gamestate';
import Login from './components/Login'
import GameBoard from './components/GameBoard';
function App() {
const { level } = useGamestate();
if (level === 'login') {
return <Login/>
}
if (level === 'gameboard') {
return <GameBoard />
}
}
export default App;