/
lizardking
/
react_project
Обзор
Документация
Войти
/
lizardking
/
react_project
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
src/features/auth/model/useAuth.ts
10 строк
252 B
LizardKing
Task 6 - Router
17 окт 2025, 22:40
17 окт 2025, 22:40
476a0e6
Код
Авторство
О чём код?
import { useContext } from 'react' import { AuthContext } from './AuthContext' export function useAuth() { const context = useContext(AuthContext) if (!context) throw new Error('useAuth must be used within <AuthProvider>') return context }