Jotzy/frontend/src/main.tsx

6 lines
162 B
TypeScript
Raw Normal View History

2025-11-19 21:16:32 +00:00
import React from "react";
import { createRoot } from "react-dom/client";
import App from "./App";
createRoot(document.getElementById("root")!).render(<App />);