gameboard rendering for cards from card deck in store

This commit is contained in:
Mikayla Dobson
2022-04-16 11:52:52 -05:00
parent 0b16b3c963
commit 9389dafa6b
8 changed files with 320 additions and 22 deletions

View File

@@ -2,6 +2,7 @@ import './App.css';
import { Routes, Route, BrowserRouter } from 'react-router-dom';
import Welcome from './components/Welcome';
import GameBoard from './components/Game/GameBoard';
function App() {
return (
@@ -9,6 +10,7 @@ function App() {
<BrowserRouter>
<Routes>
<Route path="/" element={<Welcome />}/>
<Route path="/gameboard" element={<GameBoard />}/>
</Routes>
</BrowserRouter>
</div>