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