diff options
author | Eugene <eug-vs@keemail.me> | 2020-01-16 19:32:18 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-16 19:32:18 +0000 |
commit | 22918f53bdee82e0a34bb2a09059ccd3ffca0dc6 (patch) | |
tree | 52779dc13ae2b8714b108c6cd23951de36344fbd /src/index.js | |
parent | 8a005dd6d506faf4fd1d5766a3f51d94300f4fd8 (diff) | |
parent | 6ceb6dbb3a7a43394a2318c8c9eda44e8c7a3ccb (diff) | |
download | chrono-cube-ui-22918f53bdee82e0a34bb2a09059ccd3ffca0dc6.tar.gz |
Merge pull request #40 from Eug-VS/eslint
feat: configure ESlint
Diffstat (limited to 'src/index.js')
-rw-r--r-- | src/index.js | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/index.js b/src/index.js index 6563c60..869ec3d 100644 --- a/src/index.js +++ b/src/index.js @@ -5,14 +5,14 @@ import CssBaseline from '@material-ui/core/CssBaseline'; import { ThemeProvider } from '@material-ui/core/styles'; import 'typeface-roboto'; -import theme from "./theme"; +import theme from './theme'; import Header from './components/Header/Header'; -import Timer from "./pages/Timer/Timer"; -import Scoreboard from "./pages/Scoreboard/Scoreboard"; -import Contribute from "./pages/Contribute/Contribute"; -import Profile from "./pages/Profile/Profile"; +import Timer from './pages/Timer/Timer'; +import Scoreboard from './pages/Scoreboard/Scoreboard'; +import Contribute from './pages/Contribute/Contribute'; +import Profile from './pages/Profile/Profile'; -import { get } from "./requests"; +import { get } from './requests'; const App = () => { @@ -65,5 +65,5 @@ const App = () => { ); }; -document.body.style.overflow = "hidden"; +document.body.style.overflow = 'hidden'; ReactDOM.render(<App />, document.getElementById('root')); |