Add Neighbor Sum Avoidance interactive
This commit is contained in:
parent
e398e1e267
commit
10fec3a3f6
4 changed files with 495 additions and 5 deletions
|
|
@ -56,6 +56,7 @@ import SubtractionGamePage from './pages/SubtractionGamePage';
|
|||
import StackingBlocksPage from './pages/StackingBlocksPage';
|
||||
import ParityBitsGamePage from './pages/ParityBitsGamePage';
|
||||
import CrapsGamePage from './pages/CrapsGamePage';
|
||||
import NeighborSumAvoidancePage from './pages/NeighborSumAvoidancePage';
|
||||
|
||||
const queryClient = new QueryClient();
|
||||
|
||||
|
|
@ -81,6 +82,7 @@ const App = () => (
|
|||
<Route path="/themes/discrete-math/structures" element={<Structures />} />
|
||||
<Route path="/themes/discrete-math/numbers" element={<Numbers />} />
|
||||
<Route path="/themes/discrete-math/graphs" element={<Graphs />} />
|
||||
<Route path="/themes/discrete-math/graphs/neighbor-sum-avoidance" element={<NeighborSumAvoidancePage />} />
|
||||
<Route path="/themes/social-choice" element={<SocialChoice />} />
|
||||
<Route path="/themes/advanced-algorithms" element={<AdvancedAlgorithms />} />
|
||||
<Route path="/themes/data-structures" element={<DataStructures />} />
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue