index.js 630 Bytes
Newer Older
Choi Ga Young's avatar
Choi Ga Young committed
1
2
import React from 'react';
import ReactDOM from 'react-dom';
Choi Ga Young's avatar
Choi Ga Young committed
3
import { BrowserRouter as Router, Route, Redirect, Switch } from 'react-router-dom';
Choi Ga Young's avatar
Choi Ga Young committed
4
5
import App from './App';
import * as serviceWorker from './serviceWorker';
Choi Ga Young's avatar
Choi Ga Young committed
6
7
8
import 'bootstrap';
import 'bootstrap/dist/css/bootstrap.css';

Choi Ga Young's avatar
Choi Ga Young committed
9
10
11
12
13
14
15
16
17
18
19
20

ReactDOM.render(
  <React.StrictMode>
    <App />
  </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();