import React, { createContext, useContext, useState, ReactNode } from 'react' interface ErrorContextType { error: string setError: (error: string) => void clearError: () => void } const ErrorContext = createContext(undefined) export const useError = () => { const context = useContext(ErrorContext) if (!context) { throw new Error('useError must be used within a ErrorProvider') } return context } export const ErrorProvider = ({ children }: { children: ReactNode }) => { const [error, setError] = useState('') const clearError = () => setError('') return ( {children} ) }