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

ReactDOM.render(
  <React.StrictMode>
Jiwon Yoon's avatar
Jiwon Yoon committed
11
    <App />
Yoon, Daeki's avatar
Yoon, Daeki committed
12
13
14
15
16
17
18
19
  </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();