import React, { useEffect } from "react"; import Dashboard from "./pages/Dashboard"; import { applyTheme } from "./styles/applyTheme"; import "./styles/globals.css"; function App() { useEffect(() => { applyTheme(); }, []); return (
); } export default App;