index.js 534 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
// import App from './App';
Jiwon Yoon's avatar
quiz    
Jiwon Yoon committed
5
import Quiz from './Quiz';
Yoon, Daeki's avatar
Yoon, Daeki committed
6
7
8
9
import * as serviceWorker from './serviceWorker';

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