import React from 'react'; import { Box } from './Box'; interface AuthContainerProps { children: React.ReactNode; } export function AuthContainer({ children }: AuthContainerProps) { return ( {children} ); }