feat: Integrate Material UI theme provider and enhance UI components

This commit is contained in:
2026-01-31 15:36:55 +01:00
parent dc9def4faf
commit be6dc0de60
8 changed files with 222 additions and 139 deletions

View File

@@ -1,11 +1,15 @@
import React from "react";
import ReactDOM from "react-dom/client";
import { ThemeProvider } from "@mui/material";
import theme from "./theme";
import "./index.css";
import App from "./App";
const root = ReactDOM.createRoot(document.getElementById('root'));
root.render(
<React.StrictMode>
<App />
<ThemeProvider theme={theme} defaultMode="system">
<App />
</ThemeProvider>
</React.StrictMode>
);