mirror of
https://github.com/xiaoxinpro/nginx-proxy-manager-zh.git
synced 2025-02-02 09:48:13 -05:00
31 lines
665 B
TypeScript
31 lines
665 B
TypeScript
import React from "react";
|
|
|
|
import { ColorModeScript } from "@chakra-ui/react";
|
|
import ReactDOM from "react-dom/client";
|
|
|
|
import App from "./App";
|
|
import "./index.scss";
|
|
import customTheme from "./theme/customTheme";
|
|
|
|
declare global {
|
|
interface Function {
|
|
Item: React.FC<any>;
|
|
Link: React.FC<any>;
|
|
Header: React.FC<any>;
|
|
Main: React.FC<any>;
|
|
Options: React.FC<any>;
|
|
SubTitle: React.FC<any>;
|
|
Title: React.FC<any>;
|
|
}
|
|
}
|
|
|
|
const root = ReactDOM.createRoot(
|
|
document.getElementById("root") as HTMLElement,
|
|
);
|
|
root.render(
|
|
<React.StrictMode>
|
|
<ColorModeScript initialColorMode={customTheme.config.initialColorMode} />
|
|
<App />
|
|
</React.StrictMode>,
|
|
);
|