Upgraded to vite

This commit is contained in:
Dunemask 2022-07-06 21:24:54 +00:00
parent d46be86f68
commit 70d8644ead
8 changed files with 541 additions and 24739 deletions

7
src/App.jsx Normal file
View file

@ -0,0 +1,7 @@
import { createRoot } from "react-dom/client";
import Dashboard from "./Dashboard.jsx";
const appRoot = document.getElementById("root");
const root = createRoot(appRoot);
root.render(<Dashboard />);