import { useEffect } from 'react'; import { Outlet, Route, Routes, useLocation, useParams } from 'react-router-dom'; import { isHomeView } from './lib/utils/view-utils'; import useTheme from './hooks/use-theme'; import styles from './app.module.css'; import Catalog from './views/catalog'; import Home from './views/home'; import PostPage from './views/post-page'; import Settings from './views/settings'; import Board from './views/board'; import BoardNav from './components/board-nav'; import BoardBanner from './components/board-banner'; import { DesktopBoardButtons } from './components/board-buttons'; import { MobileBoardButtons } from './components/board-buttons'; import SubplebbitStats from './components/subplebbit-stats'; import PostForm from './components/post-form'; const BoardLayout = () => { const { subplebbitAddress } = useParams(); return ( <> ); }; const App = () => { const location = useLocation(); const isInHomeView = isHomeView(location.pathname); // add theme className to body so it can set the correct body background in index.css const [theme] = useTheme(); useEffect(() => { document.body.classList.forEach((className) => document.body.classList.remove(className)); document.body.classList.add(theme); }, [theme]); // const globalLayout = ( // <> // // // // ); return (
} /> }> } /> } /> } /> } /> } /> } />
); }; export default App;