From 751a9ef3a12c952fe179f256d854d0c4aa37e28e Mon Sep 17 00:00:00 2001 From: Georgios Andreadis Date: Wed, 4 Oct 2017 22:49:07 +0200 Subject: Apply prettier to codebase --- src/index.js | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) (limited to 'src/index.js') diff --git a/src/index.js b/src/index.js index 84d5329c..dad662c4 100644 --- a/src/index.js +++ b/src/index.js @@ -1,21 +1,21 @@ import React from "react"; import ReactDOM from "react-dom"; -import {Provider} from "react-redux"; -import {setupSocketConnection} from "./api/socket"; +import { Provider } from "react-redux"; +import { setupSocketConnection } from "./api/socket"; import "./index.css"; import registerServiceWorker from "./registerServiceWorker"; import Routes from "./routes"; import configureStore from "./store/configure-store"; setupSocketConnection(() => { - const store = configureStore(); + const store = configureStore(); - ReactDOM.render( - - - , - document.getElementById('root') - ); + ReactDOM.render( + + + , + document.getElementById("root") + ); - registerServiceWorker(); + registerServiceWorker(); }); -- cgit v1.2.3