Files
teatea-pension/modules/auth/components/AuthGate.tsx

8 lines
160 B
TypeScript

type AuthGateProps = {
children: React.ReactNode;
};
export function AuthGate({ children }: AuthGateProps): React.ReactElement {
return <>{children}</>;
}