import React, { useContext } from 'react'; import { ThemeContext } from '../App'; const ModeToggle: React.FC = () => { const { theme, toggleTheme } = useContext(ThemeContext); return (