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:
452 bytes
|
Rev | Line | |
---|
[5d6f37a] | 1 | 'use client';
|
---|
| 2 |
|
---|
| 3 | // components
|
---|
| 4 | import { SplashScreen } from 'src/components/loading-screen';
|
---|
| 5 | //
|
---|
| 6 | import { AuthContext } from './auth-context';
|
---|
| 7 |
|
---|
| 8 | // ----------------------------------------------------------------------
|
---|
| 9 |
|
---|
| 10 | type Props = {
|
---|
| 11 | children: React.ReactNode;
|
---|
| 12 | };
|
---|
| 13 |
|
---|
| 14 | export function AuthConsumer({ children }: Props) {
|
---|
| 15 | return (
|
---|
| 16 | <AuthContext.Consumer>
|
---|
| 17 | {(auth) => (auth.loading ? <SplashScreen /> : children)}
|
---|
| 18 | </AuthContext.Consumer>
|
---|
| 19 | );
|
---|
| 20 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.