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