diff options
author | Galen Guyer <galen@galenguyer.com> | 2020-11-13 20:35:58 -0500 |
---|---|---|
committer | Galen Guyer <galen@galenguyer.com> | 2020-11-13 20:35:58 -0500 |
commit | 2a844fc6834c3fd512de78da4a8d1c20b41b384a (patch) | |
tree | 6a7c77666a9b7413c5a61f0d483824633808000c /src/index.js | |
parent | a0746693e981b5cf2288f467913745b56f2be468 (diff) |
Add prettier
Diffstat (limited to 'src/index.js')
-rw-r--r-- | src/index.js | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/index.js b/src/index.js index ef2edf8..c965911 100644 --- a/src/index.js +++ b/src/index.js @@ -1,14 +1,14 @@ -import React from 'react'; -import ReactDOM from 'react-dom'; -import './index.css'; -import App from './App'; -import reportWebVitals from './reportWebVitals'; +import React from "react"; +import ReactDOM from "react-dom"; +import "./index.css"; +import App from "./App"; +import reportWebVitals from "./reportWebVitals"; ReactDOM.render( - <React.StrictMode> - <App /> - </React.StrictMode>, - document.getElementById('root') + <React.StrictMode> + <App /> + </React.StrictMode>, + document.getElementById("root") ); // If you want to start measuring performance in your app, pass a function |