diff options
author | Joffrey BION <joffrey.bion@gmail.com> | 2018-06-09 13:36:45 +0200 |
---|---|---|
committer | Joffrey BION <joffrey.bion@gmail.com> | 2018-06-09 13:36:45 +0200 |
commit | 73389ad516af4cb49873cc19c2dc65efc77d6eb8 (patch) | |
tree | 85ecfb9b15c1db0b01300e7b18b0d7ad2d1a2d76 /frontend/src/scenes/index.js | |
parent | Fix frontend gitignore (diff) | |
download | seven-wonders-73389ad516af4cb49873cc19c2dc65efc77d6eb8.tar.gz seven-wonders-73389ad516af4cb49873cc19c2dc65efc77d6eb8.tar.bz2 seven-wonders-73389ad516af4cb49873cc19c2dc65efc77d6eb8.zip |
Split GameBrowser into multiple connected components
Diffstat (limited to 'frontend/src/scenes/index.js')
-rw-r--r-- | frontend/src/scenes/index.js | 2 |
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'; |