2024-07-28 01:03:56 +00:00
|
|
|
import React from "react";
|
|
|
|
import ReactDOM from "react-dom";
|
|
|
|
import "./index.css";
|
|
|
|
import App from "./App";
|
|
|
|
import reportWebVitals from "./reportWebVitals";
|
2021-03-09 13:41:57 +00:00
|
|
|
import "@fortawesome/fontawesome-free/css/all.css";
|
2024-07-28 01:03:56 +00:00
|
|
|
import "bootstrap/dist/css/bootstrap.css";
|
|
|
|
import "./App.css";
|
2021-03-09 12:39:13 +00:00
|
|
|
|
|
|
|
ReactDOM.render(
|
2024-07-28 01:03:56 +00:00
|
|
|
// <React.StrictMode>
|
|
|
|
<App />, // </React.StrictMode>,
|
|
|
|
document.getElementById("root")
|
2021-03-09 12:39:13 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
// 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();
|