feat: wire auth and CRUD UI to APIs
This commit is contained in:
7
modules/auth/components/AuthGate.tsx
Normal file
7
modules/auth/components/AuthGate.tsx
Normal file
@@ -0,0 +1,7 @@
|
||||
type AuthGateProps = {
|
||||
children: React.ReactNode;
|
||||
};
|
||||
|
||||
export function AuthGate({ children }: AuthGateProps): React.ReactElement {
|
||||
return <>{children}</>;
|
||||
}
|
||||
Reference in New Issue
Block a user