import * as React from 'react'; import { Button, Typography } from '@mui/material'; import DarkModeIcon from '@mui/icons-material/DarkMode'; import LightModeIcon from '@mui/icons-material/LightMode'; import { useAppContext } from './context'; export const ThemeToggle: React.FC = () => { const { mode, toggleMode } = useAppContext(); return ( ); };