ishaq101's picture
feat: integrate room & chat API contract updates
8fa19d9
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 />);