Files
timmy-tower/artifacts/mockup-sandbox/src/main.tsx

6 lines
157 B
TypeScript
Raw Normal View History

2026-03-13 23:21:55 +00:00
import { createRoot } from "react-dom/client";
import App from "./App";
import "./index.css";
createRoot(document.getElementById("root")!).render(<App />);