This repository has been archived on 2023-12-17. You can view files and clone it, but cannot push or open issues or pull requests.
2023-07-27 22:20:20 +00:00
|
|
|
import { createRoot } from "react-dom";
|
|
|
|
import React from "react";
|
2023-06-17 16:52:16 +00:00
|
|
|
|
2023-07-27 22:20:20 +00:00
|
|
|
import App from "./apps/dashboard/App.jsx";
|
2023-06-17 16:52:16 +00:00
|
|
|
|
2023-07-27 22:20:20 +00:00
|
|
|
const root = createRoot(document.getElementById("app"));
|
|
|
|
|
|
|
|
root.render(React.createElement(App));
|