text-dataset-tiny-code-script-py-format / ysnrfd_messenger /BACKUP /frontend /src /hooks /useAuth.js
| import { useContext } from 'react'; | |
| import { AuthContext } from '../contexts/AuthContext'; | |
| export const useAuth = () => { | |
| const context = useContext(AuthContext); | |
| if (!context) { | |
| throw new Error('useAuth must be used within an AuthProvider'); | |
| } | |
| return context; | |
| }; |