Spaces:
Running
Running
File size: 738 Bytes
47c0b4f |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 |
import React, { createContext, useContext, useState, ReactNode } from 'react'
interface ErrorContextType {
error: string
setError: (error: string) => void
clearError: () => void
}
const ErrorContext = createContext<ErrorContextType | undefined>(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 (
<ErrorContext.Provider value={{ error, setError, clearError }}>
{children}
</ErrorContext.Provider>
)
}
|