import React from 'react'; import { useTheme } from '../contexts/ThemeContext'; import { Theme } from '../types'; interface Props { onStartGame: () => void; categories?: string[]; selectedCategory?: string; onSelectCategory?: (cat: string) => void; } const MainMenu: React.FC = ({ onStartGame, categories = [], selectedCategory = 'random', onSelectCategory }) => { const { theme, toggleTheme } = useTheme(); return (

TyperPunk

); }; export default MainMenu;