notshop-bundle/client/src/main.tsx

6 lines
157 B
TypeScript
Raw Normal View History

2026-04-26 16:35:05 +00:00
import { createRoot } from "react-dom/client";
import App from "./App";
import "./index.css";
createRoot(document.getElementById("root")!).render(<App />);