main
Last change
on this file since 5d6f37a was 5d6f37a, checked in by Naum Shapkarovski <naumshapkarovski@…>, 7 weeks ago |
add customer
|
-
Property mode
set to
100644
|
File size:
389 bytes
|
Line | |
---|
1 | 'use client';
|
---|
2 |
|
---|
3 | import { useContext } from 'react';
|
---|
4 | //
|
---|
5 | import { AuthContext } from '../context/firebase/auth-context';
|
---|
6 |
|
---|
7 | // ----------------------------------------------------------------------
|
---|
8 |
|
---|
9 | export const useAuthContext = () => {
|
---|
10 | const context = useContext(AuthContext);
|
---|
11 |
|
---|
12 | if (!context) throw new Error('useAuthContext context must be use inside AuthProvider');
|
---|
13 |
|
---|
14 | return context;
|
---|
15 | };
|
---|
Note:
See
TracBrowser
for help on using the repository browser.