ADD: Brightness functionality

This commit is contained in:
EvanLin3141
2025-02-22 20:49:16 +00:00
parent cd7ea461a8
commit ed298f0293
10 changed files with 263 additions and 3 deletions

View File

@@ -1,13 +1,10 @@
import { StrictMode } from "react";
import { ThemeProvider } from "./context/ThemeContext";
import { createRoot } from "react-dom/client";
import "./assets/styles/index.css";
import App from "./App.tsx";
createRoot(document.getElementById("root")!).render(
// <StrictMode>
<ThemeProvider>
<App />
</ThemeProvider>
// </StrictMode>,
);