import React, { ReactNode } from 'react'; import { Box } from './primitives/Box'; import { Glow } from './Glow'; export interface AuthLayoutProps { children: ReactNode; } export const AuthLayout = ({ children }: AuthLayoutProps) => { return ( {children} ); };