Add Assisted Nim Game and update components
This commit is contained in:
parent
3705152d34
commit
6af3ec81ef
6 changed files with 435 additions and 0 deletions
|
|
@ -30,6 +30,7 @@ import TernarySearchTrickGreenScreen from "./pages/TernarySearchTrickGreenScreen
|
|||
import NorthcottsGamePage from "./pages/NorthcottsGamePage";
|
||||
import KnightsPuzzlePage from "./pages/KnightsPuzzlePage";
|
||||
import NimGamePage from "./pages/NimGamePage";
|
||||
import AssistedNimGamePage from "./pages/AssistedNimGamePage";
|
||||
import Foundations from "./pages/theme-pages/discrete-math/Foundations";
|
||||
import Proofs from "./pages/theme-pages/discrete-math/Proofs";
|
||||
import Counting from "./pages/theme-pages/discrete-math/Counting";
|
||||
|
|
@ -86,6 +87,7 @@ const App = () => (
|
|||
<Route path="/northcotts-game" element={<NorthcottsGamePage />} />
|
||||
<Route path="/knights-puzzle" element={<KnightsPuzzlePage />} />
|
||||
<Route path="/games/nim" element={<NimGamePage />} />
|
||||
<Route path="/games/assisted-nim" element={<AssistedNimGamePage />} />
|
||||
|
||||
{/* ADD ALL CUSTOM ROUTES ABOVE THE CATCH-ALL "*" ROUTE */}
|
||||
<Route path="*" element={<NotFound />} />
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue