frontAnswerer/src/main.tsx

8 lines
156 B
TypeScript
Raw Normal View History

2023-12-16 14:55:56 +00:00
import { createRoot } from "react-dom/client";
2024-01-20 12:25:08 +00:00
import App from "./App";
2023-12-16 14:55:56 +00:00
const root = createRoot(document.getElementById("root")!);
2024-01-20 12:25:08 +00:00
root.render(<App />);