Jotzy/frontend/src/main.tsx
2025-11-19 21:16:32 +00:00

5 lines
162 B
TypeScript

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