import { forwardRef } from 'react' import { cn } from 'ui' const Grid = forwardRef>( ({ children, ...props }, ref) => { return (
{children}
) } ) Grid.displayName = 'Grid' const GridItem = forwardRef>( ({ children, ...props }, ref) => { return (
{children}
) } ) GridItem.displayName = 'GridItem' export { Grid, GridItem }