feat: add system service (#2083)

* feat: add system service

* chore: update
This commit is contained in:
boojack
2023-08-05 21:30:23 +08:00
committed by GitHub
parent 270a529948
commit 238f896907
25 changed files with 940 additions and 71 deletions

View File

@ -2,13 +2,13 @@ import { CssVarsProvider } from "@mui/joy";
import { createRoot } from "react-dom/client";
import { Provider } from "react-redux";
import App from "./App";
import store from "./store";
import theme from "./theme";
import "./css/global.css";
import "./css/tailwind.css";
import "./helpers/polyfill";
import "./i18n";
import "./less/code-highlight.less";
import "./css/global.css";
import "./css/tailwind.css";
import store from "./store";
import theme from "./theme";
const container = document.getElementById("root");
const root = createRoot(container as HTMLElement);