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