diff options
author | Eug-VS <eug-vs@keemail.me> | 2020-01-15 23:22:43 +0300 |
---|---|---|
committer | Eug-VS <eug-vs@keemail.me> | 2020-01-15 23:22:43 +0300 |
commit | 893fa5981a3c831b4c7da6ee2aa131f829943a54 (patch) | |
tree | c74cf682b289304dfcd019e6641f6789dafbbc2a /src/index.js | |
parent | 8d98180b4f6882dbbe6754bceb8ffb09f46f7e7d (diff) | |
download | chrono-cube-ui-893fa5981a3c831b4c7da6ee2aa131f829943a54.tar.gz |
style: fix all quote errors with new eslint config
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')); |