import clsx from 'clsx'; import { forwardRef } from 'react'; function Grid(props: React.ComponentProps<'ul'>) { return ( ); } const GridItem = forwardRef>((props, ref) => { return (
  • {props.children}
  • ); }); GridItem.displayName = 'GridItem'; Grid.Item = GridItem; export default Grid;