Add Knights Exchange Puzzle
Make the Knights Exchange Puzzle a standalone interactive and add it to the puzzles theme.
This commit is contained in:
parent
3c1a209d89
commit
33c4e2dcb7
3 changed files with 44 additions and 4 deletions
|
|
@ -28,6 +28,7 @@ import GameOfSimPage from "./pages/GameOfSimPage";
|
|||
import TernarySearchTrickPage from "./pages/TernarySearchTrickPage";
|
||||
import TernarySearchTrickGreenScreen from "./pages/TernarySearchTrickGreenScreen";
|
||||
import NorthcottsGamePage from "./pages/NorthcottsGamePage";
|
||||
import KnightsPuzzlePage from "./pages/KnightsPuzzlePage";
|
||||
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";
|
||||
|
|
@ -82,6 +83,7 @@ const App = () => (
|
|||
<Route path="/ternary-search-trick" element={<TernarySearchTrickPage />} />
|
||||
<Route path="/ternary-search-trick/:mode" element={<TernarySearchTrickGreenScreen />} />
|
||||
<Route path="/northcotts-game" element={<NorthcottsGamePage />} />
|
||||
<Route path="/knights-puzzle" element={<KnightsPuzzlePage />} />
|
||||
|
||||
{/* ADD ALL CUSTOM ROUTES ABOVE THE CATCH-ALL "*" ROUTE */}
|
||||
<Route path="*" element={<NotFound />} />
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue