import { Box } from '@/ui/primitives/Box'; import { ReactNode } from 'react'; interface TeamGridProps { children: ReactNode; } export function TeamGrid({ children }: TeamGridProps) { return ( {children} ); }