import React from 'react' import { ItemInfoProps } from '../../../itemInfo' import { StyledItemsSection } from './ItemsSection.style' export type ItemsSectionProps = Readonly<{ children: Array> className?: string tag?: JSX.Element }> /** * Items Section: display a list of items in a display: flex. * Use with two items. */ export const ItemsSection = (props: ItemsSectionProps) => { const { className, children, tag =
} = props return ( {children} ) }