7 lines
183 B
TypeScript
7 lines
183 B
TypeScript
|
|
import { createRoot } from "react-dom/client";
|
|
import App from "./app/App.tsx";
|
|
import "./styles/index.css";
|
|
|
|
createRoot(document.getElementById("root")!).render(<App />);
|
|
|