import OfferingItem from './offering-item'; import { OfferingCardProps } from './types'; import './style.scss'; const Offering: React.FC< OfferingCardProps > = ( { title, description, items, children } ) => { return (
{ description }
{ children } { items?.map( ( item ) =>