File size: 288 Bytes
73b6f92
 
 
f48f5c4
1643ce8
73b6f92
 
 
bdfdb65
73b6f92
 
1
2
3
4
5
6
7
8
9
10
11
12
import React from "react";
import ReactDOM from "react-dom/client";
import App from "./App";
import "./index.css";
import "./components/report-editor";

ReactDOM.createRoot(document.getElementById("root") as HTMLElement).render(
  <React.StrictMode>
    <App />
  </React.StrictMode>,
);