DarainHyder
Initial clean deploy commit: removing binary files and venv
25732fb
raw
history blame contribute delete
266 Bytes
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
}