7 lines
201 B
JavaScript
7 lines
201 B
JavaScript
import { createRoot } from "react-dom/client";
|
|
import Dashboard from "./Dashboard.jsx";
|
|
|
|
const appRoot = document.getElementById("root");
|
|
const root = createRoot(appRoot);
|
|
|
|
root.render(<Dashboard />);
|