master
Raw Download raw file
1import React from "react";
2import { createRoot } from "react-dom/client";
3
4import { App } from "./App";
5
6import "./index.scss";
7
8const root = createRoot(document.getElementById("root")!);
9root.render(<App />);