Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
Grzegorz Tańczyk committed Apr 21, 2024
1 parent 3bf9df7 commit dbfccf8
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions games/nukes/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@ import { BrowserRouter, Routes, Route, useNavigate } from 'react-router-dom';
import './App.css';
import { GameState } from './game-states/types';
import { GameStateIntro } from './game-states/state-intro';
import { GameStateTechMap } from './game-states/state-tech-map';
import { GameStateTechNuke } from './game-states/state-tech-nuke';
import { GameStateTechWorld } from './game-states/state-tech-world';

function App() {
Expand All @@ -13,8 +11,6 @@ function App() {
<BrowserRouter basename="/">
<Routes>
<Route path={GameStateIntro.path} element={<GameStateRoute state={GameStateIntro} />} />
<Route path={GameStateTechMap.path} element={<GameStateRoute state={GameStateTechMap} />} />
<Route path={GameStateTechNuke.path} element={<GameStateRoute state={GameStateTechNuke} />} />
<Route path={GameStateTechWorld.path} element={<GameStateRoute state={GameStateTechWorld} />} />
</Routes>
</BrowserRouter>
Expand Down

0 comments on commit dbfccf8

Please sign in to comment.