2022-04-06 21:18:32 +01:00
|
|
|
import React from "react";
|
|
|
|
import ReactDOM from "react-dom";
|
|
|
|
|
|
|
|
// import { Chart, ArcElement, Tooltip, Legend, CategoryScale, LinearScale, Title } from "chart.js";
|
|
|
|
import { Chart, registerables } from "chart.js";
|
2022-05-02 15:28:26 +05:30
|
|
|
import { MatrixElement, MatrixController } from "chartjs-chart-matrix";
|
2022-04-06 21:18:32 +01:00
|
|
|
import "chartjs-adapter-moment";
|
|
|
|
|
|
|
|
import App from "./App";
|
|
|
|
import reportWebVitals from "./reportWebVitals";
|
|
|
|
|
2022-04-29 15:45:52 +01:00
|
|
|
import "antd/dist/antd.min.css";
|
2022-04-06 21:18:32 +01:00
|
|
|
import "leaflet/dist/leaflet.css";
|
|
|
|
import "leaflet.awesome-markers/dist/leaflet.awesome-markers.css";
|
|
|
|
import "@fortawesome/fontawesome-free/css/all.css";
|
|
|
|
import "codemirror/lib/codemirror.css";
|
|
|
|
import "codemirror/theme/base16-light.css";
|
|
|
|
import "./index.css";
|
|
|
|
|
|
|
|
Chart.register(MatrixController, MatrixElement, ...registerables);
|
|
|
|
|
|
|
|
ReactDOM.render(
|
|
|
|
<React.StrictMode>
|
|
|
|
<App />
|
|
|
|
</React.StrictMode>,
|
2022-05-02 15:28:26 +05:30
|
|
|
document.getElementById("root"),
|
2022-04-06 21:18:32 +01: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();
|