Files
platform/seed/project-templates/simple-app-template/src/frontend.tsx
T
2026-02-25 06:59:29 +00:00

10 lines
218 B
TypeScript

/**
* This file is the entry point for the React app.
*/
import { createRoot } from "react-dom/client";
import { App } from "./App";
const elem = document.getElementById("root")!;
createRoot(elem).render(<App />);