Initial commit

This commit is contained in:
Dunemask 2023-03-05 14:16:12 -05:00
commit 11d8229eb5
8 changed files with 1914 additions and 0 deletions

6
src/App.jsx Normal file
View file

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