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