15 lines
277 B
TypeScript
15 lines
277 B
TypeScript
import { Grid } from '@/ui/Grid';
|
|
import { ReactNode } from 'react';
|
|
|
|
interface TeamGridProps {
|
|
children: ReactNode;
|
|
}
|
|
|
|
export function TeamGrid({ children }: TeamGridProps) {
|
|
return (
|
|
<Grid cols={{ base: 1, md: 2, lg: 3 }} gap={4}>
|
|
{children}
|
|
</Grid>
|
|
);
|
|
}
|