index.js 607 Bytes
Newer Older
Yoon, Daeki's avatar
Yoon, Daeki committed
1
2
import React from 'react';
import ReactDOM from 'react-dom';
baesangjune's avatar
baesangjune committed
3
import 'react-dom'
Yoon, Daeki's avatar
Yoon, Daeki committed
4
import './index.css';
Jiwon Yoon's avatar
Jiwon Yoon committed
5
import App from './App';
Jiwon Yoon's avatar
g    
Jiwon Yoon committed
6
import 'bootstrap/dist/css/bootstrap.css';
Yoon, Daeki's avatar
Yoon, Daeki committed
7
import * as serviceWorker from './serviceWorker';
baesangjune's avatar
end    
baesangjune committed
8
import 'bootstrap/dist/css/bootstrap.css'
Yoon, Daeki's avatar
Yoon, Daeki committed
9
10
11

ReactDOM.render(
  <React.StrictMode>
Jiwon Yoon's avatar
Jiwon Yoon committed
12
    <App />
Yoon, Daeki's avatar
Yoon, Daeki committed
13
14
15
16
17
18
19
20
  </React.StrictMode>,
  document.getElementById('root')
);

// If you want your app to work offline and load faster, you can change
// unregister() to register() below. Note this comes with some pitfalls.
// Learn more about service workers: https://bit.ly/CRA-PWA
serviceWorker.unregister();