Files
lume/apps/desktop/src/main.jsx
2024-01-05 07:31:08 +07:00

9 lines
203 B
JavaScript

import { createRoot } from "react-dom/client";
import App from "./app";
import "./app.css";
const container = document.getElementById("root");
const root = createRoot(container);
root.render(<App />);