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