File size: 266 Bytes
25732fb | 1 2 3 4 5 6 7 8 9 10 | import { useContext } from 'react'
import { AuthContext } from '../context/AuthContext'
export const useAuth = () => {
const context = useContext(AuthContext)
if (!context) {
throw new Error('useAuth must be used within AuthProvider')
}
return context
} |