summaryrefslogtreecommitdiff
path: root/sw-ui/src/components/Application.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'sw-ui/src/components/Application.tsx')
-rw-r--r--sw-ui/src/components/Application.tsx16
1 files changed, 0 insertions, 16 deletions
diff --git a/sw-ui/src/components/Application.tsx b/sw-ui/src/components/Application.tsx
deleted file mode 100644
index e0ec604d..00000000
--- a/sw-ui/src/components/Application.tsx
+++ /dev/null
@@ -1,16 +0,0 @@
-import React from 'react';
-import { Redirect, Route, Switch } from 'react-router-dom';
-import { GameBrowser } from './game-browser/GameBrowser';
-import { GameScene } from './game/GameScene';
-import { Lobby } from './lobby/Lobby';
-import { Home } from './home/Home';
-
-export const Application = () => (
- <Switch>
- <Route path="/game" component={GameScene} />
- <Route path="/games" component={GameBrowser} />
- <Route path="/lobby" component={Lobby} />
- <Route path="/" component={Home} />
- <Redirect to="/" />
- </Switch>
-);
bgstack15