minecluster/src/App.jsx

7 lines
181 B
React
Raw Normal View History

2023-03-05 14:16:12 -05:00
import { createRoot } from "react-dom/client";
import MCL from "./MCL.jsx";
const appRoot = document.getElementById("mcl");
const root = createRoot(appRoot);
root.render(<MCL />);