summaryrefslogtreecommitdiff
path: root/frontend/src/scenes/index.js
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/src/scenes/index.js')
-rw-r--r--frontend/src/scenes/index.js4
1 files changed, 1 insertions, 3 deletions
diff --git a/frontend/src/scenes/index.js b/frontend/src/scenes/index.js
index 83554d48..ffc2c856 100644
--- a/frontend/src/scenes/index.js
+++ b/frontend/src/scenes/index.js
@@ -5,7 +5,7 @@ import SplashScreen from './SplashScreen';
import Games from './Games';
import Lobby from './Lobby';
-const Application = () => (
+export const Application = () => (
<Switch>
<Route path="/splash-screen" component={SplashScreen} />
<Route path="/games" component={Games} />
@@ -13,5 +13,3 @@ const Application = () => (
<Redirect from="*" to="/splash-screen" />
</Switch>
);
-
-export default Application;
bgstack15