File size: 266 Bytes
9d69ba4
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
import { createRoot } from "react-dom/client";
import "./index.css";
import App from "./App.tsx";

const rootElement = document.getElementById("root");
if (!rootElement) {
  throw new Error("Failed to find root element");
}

createRoot(rootElement).render(<App />);