minecluster/src/App.jsx
2023-03-05 14:16:12 -05:00

6 lines
181 B
JavaScript

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