Managed to load server configuration from WebUI

This commit is contained in:
2024-04-29 22:14:16 +02:00
parent 955067ad9c
commit 46648db093
15 changed files with 2159 additions and 13 deletions

View File

@ -2,9 +2,18 @@ import React from "react";
import ReactDOM from "react-dom/client";
import "./index.css";
import { App } from "./App";
import {
FluentProvider,
teamsHighContrastTheme,
} from "@fluentui/react-components";
ReactDOM.createRoot(document.getElementById("root")!).render(
<React.StrictMode>
<App />
<FluentProvider
theme={teamsHighContrastTheme}
style={{ display: "flex", flex: 1 }}
>
<App />
</FluentProvider>
</React.StrictMode>
);