From 893fa5981a3c831b4c7da6ee2aa131f829943a54 Mon Sep 17 00:00:00 2001 From: Eug-VS Date: Wed, 15 Jan 2020 23:22:43 +0300 Subject: style: fix all quote errors with new eslint config --- src/index.js | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'src/index.js') 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(, document.getElementById('root')); -- cgit v1.2.3