blob: 7f2be6ea44c2f73b3626ff63ed22c80b4291232b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
import "modern-normalize";
import React from "react";
import { render } from "react-dom";
import { BrowserRouter } from "react-router-dom";
import reportWebVitals from "./reportWebVitals";
import App from "./App";
render(
<BrowserRouter basename={process.env.PUBLIC_URL}>
<React.StrictMode>
<App />
</React.StrictMode>
</BrowserRouter>,
document.getElementById("app")
);
// 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();
|