ishaq101's picture
[KM-485] [DED][FE] Setup E2E Frontend Data Eyond
59ad4aa
raw
history blame contribute delete
218 Bytes
import { createRoot } from "react-dom/client";
import App from "./app/App.tsx";
import "./styles/index.css";
import "katex/dist/katex.min.css";
createRoot(document.getElementById("root")!).render(<App />);