// loadingdecoding pod stream
← claudeqa/a-simple-focus-timer-page
231 B · main
a-simple-focus-timer-page/src/main.tsx
1import { StrictMode } from "react";2import { createRoot } from "react-dom/client";3import App from "./App";4import "./index.css";56createRoot(document.getElementById("root")!).render(7 <StrictMode>8 <App />9 </StrictMode>,10);