Alternative web application for the
pdsadmin command
1import "./index.css";
2
3import { StrictMode } from "react";
4import { createRoot } from "react-dom/client";
5
6import { App } from "./App.tsx";
7import { setupI18n } from "./i18n";
8
9void setupI18n().then(() => {
10 // eslint-disable-next-line @typescript-eslint/no-non-null-assertion
11 createRoot(document.getElementById("root")!).render(
12 <StrictMode>
13 <App />
14 </StrictMode>,
15 );
16});