Fully-working settings page editor

This commit is contained in:
Patrick Robertson
2025-02-26 17:02:49 +00:00
parent bb961b131c
commit 70d89c71ce
21 changed files with 6354 additions and 180 deletions

View File

@@ -0,0 +1,15 @@
import * as React from 'react';
import * as ReactDOM from 'react-dom/client';
import { ThemeProvider } from '@mui/material/styles';
import { CssBaseline } from '@mui/material';
import theme from './theme';
import App from './App';
ReactDOM.createRoot(document.getElementById('root')!).render(
<React.StrictMode>
<ThemeProvider theme={theme}>
<CssBaseline />
<App />
</ThemeProvider>
</React.StrictMode>,
);