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.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/frontend/src/scenes/index.js b/frontend/src/scenes/index.js
index 5d75f275..eb15e626 100644
--- a/frontend/src/scenes/index.js
+++ b/frontend/src/scenes/index.js
@@ -1,6 +1,6 @@
import React from 'react';
import { Redirect, Route, Switch } from 'react-router-dom';
-import { GameBrowser } from './GameBrowser';
+import { GameBrowser } from '../components/game-browser/GameBrowser';
import { Lobby } from './Lobby';
import { SplashScreen } from './SplashScreen';
bgstack15