8 lines
160 B
TypeScript
8 lines
160 B
TypeScript
type AuthGateProps = {
|
|
children: React.ReactNode;
|
|
};
|
|
|
|
export function AuthGate({ children }: AuthGateProps): React.ReactElement {
|
|
return <>{children}</>;
|
|
}
|