index.js 565 Bytes
Newer Older
우지원's avatar
0628    
우지원 committed
1
2
3
4
5
6
7
import React from "react";
import ReactDOM from "react-dom";
import "./index.css";
import "bootstrap";
import 'bootstrap/dist/css/bootstrap.min.css'
import App from "./App";
import reportWebVitals from "./reportWebVitals";
Kim, Chaerin's avatar
Kim, Chaerin committed
8
9
10
11
12

ReactDOM.render(
  <React.StrictMode>
    <App />
  </React.StrictMode>,
우지원's avatar
0628    
우지원 committed
13
  document.getElementById("root")
Kim, Chaerin's avatar
Kim, Chaerin committed
14
15
16
17
18
);

// 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
우지원's avatar
0628    
우지원 committed
19
reportWebVitals();