Files
radio1/client/src/main.tsx
2025-11-21 16:06:20 +03:00

6 lines
157 B
TypeScript

import { createRoot } from "react-dom/client";
import App from "./App";
import "./index.css";
createRoot(document.getElementById("root")!).render(<App />);