mirror of
https://github.com/usatiuk/y.git
synced 2025-10-29 02:37:49 +01:00
9 lines
210 B
TypeScript
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 />);
|