index.js 594 Bytes
Newer Older
김민수's avatar
김민수 committed
1
2
import React from 'react';
import ReactDOM from 'react-dom';
김민수's avatar
김민수 committed
3
import 'react-dom'
김민수's avatar
김민수 committed
4
5
6
7
import './index.css';
import App from './App';
// import Quiz from './Quiz';
import * as serviceWorker from './serviceWorker';
김민수's avatar
김민수 committed
8
import 'bootstrap/dist/css/bootstrap.css'
김민수's avatar
김민수 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();