theo-agent-dashboard

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README

main.tsx (235B)


      1 import { StrictMode } from "react";
      2 import { createRoot } from "react-dom/client";
      3 import { App } from "./App";
      4 import "./index.css";
      5 
      6 createRoot(document.getElementById("root")!).render(
      7   <StrictMode>
      8     <App />
      9   </StrictMode>,
     10 );