Selaa lähdekoodia

Moving game panel into a folder to start breaking it up nicely

Kirk Trombley 5 vuotta sitten
vanhempi
commit
f1d9a25da4

+ 4 - 4
ui/src/components/game-panel.component.jsx → ui/src/components/game-panel.component/game-panel.component.jsx

@@ -1,10 +1,10 @@
 import React from 'react';
 import { compose, withProps } from "recompose";
 import { withScriptjs, withGoogleMap, StreetViewPanorama, GoogleMap, Marker } from "react-google-maps";
-import { gameInfo, getGuesses, sendGuess } from "../services/ggsh.service";
-import withGoogleApiKey from "./with-google-key.component";
-import RoundTimer from "./round-timer.component";
-import Loading from './loading.component';
+import { gameInfo, getGuesses, sendGuess } from "../../services/ggsh.service";
+import withGoogleApiKey from "../with-google-key.component";
+import RoundTimer from "../round-timer.component";
+import Loading from '../loading.component';
 
 // TODO want a button for moving the pano back to start somehow
 

+ 1 - 0
ui/src/components/game-panel.component/index.jsx

@@ -0,0 +1 @@
+export { default } from './game-panel.component';