Private
Public Access
1
0

Refactor code structure for improved readability and maintainability

This commit is contained in:
Lago
2026-04-16 22:06:36 +02:00
parent dfa4010406
commit 96f76e21a7
101 changed files with 214280 additions and 1189 deletions

View File

@@ -1,10 +1,15 @@
import React from 'react';
import ReactDOM from 'react-dom/client';
import { FluentProvider, webLightTheme, webDarkTheme } from '@fluentui/react-components';
import App from './App';
import './index.css';
const prefersDark = window.matchMedia('(prefers-color-scheme: dark)').matches;
ReactDOM.createRoot(document.getElementById('root')!).render(
<React.StrictMode>
<App />
<FluentProvider theme={prefersDark ? webDarkTheme : webLightTheme} style={{ height: '100vh' }}>
<App />
</FluentProvider>
</React.StrictMode>
);