index.js 609 Bytes
Newer Older
Sangjune Bae's avatar
Sangjune Bae committed
1
2
import React from 'react';
import ReactDOM from 'react-dom';
Sangjune Bae's avatar
Sangjune Bae committed
3
// import './index.css';
Sangjune Bae's avatar
Sangjune Bae committed
4
import App from './App';
Sangjune Bae's avatar
Sangjune Bae committed
5
import reportWebVitals from './reportWebVitals';
Sangjune Bae's avatar
Sangjune Bae committed
6
import 'bootstrap/dist/css/bootstrap.min.css';
Sangjune Bae's avatar
Sangjune Bae committed
7
// import '@fortawesome/fontawesome-free/css/all.css'
Sangjune Bae's avatar
Sangjune Bae committed
8
9

ReactDOM.render(
Sangjune Bae's avatar
Sangjune Bae committed
10
  //<React.StrictMode>
Sangjune Bae's avatar
Sangjune Bae committed
11
    <App />,
Sangjune Bae's avatar
Sangjune Bae committed
12
  //</React.StrictMode>,
Sangjune Bae's avatar
Sangjune Bae committed
13
14
15
  document.getElementById('root')
);

Sangjune Bae's avatar
Sangjune Bae committed
16
17
18
19
// If you want to start measuring performance in your app, pass a function
// to log results (for example: reportWebVitals(console.log))
// or send to an analytics endpoint. Learn more: https://bit.ly/CRA-vitals
reportWebVitals();