Files
y/client/src/index.tsx
Stepan Usatiuk 3cf1d03df4 posts posting
2023-12-16 18:32:35 +01:00

9 lines
210 B
TypeScript

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