qualiteer/src/App.jsx

8 lines
201 B
React
Raw Normal View History

2022-05-05 12:35:47 +00:00
import { createRoot } from "react-dom/client";
import Dashboard from "./Dashboard.jsx";
const appRoot = document.getElementById("root");
const root = createRoot(appRoot);
root.render(<Dashboard />);