import { createContext } from 'react' export type Theme = 'dark' | 'light' export interface ThemeContextType { theme: Theme toggleTheme: () => void } export const ThemeContext = createContext(undefined)