import React from 'react'; import SecondaryTitle from '../SecondaryTitle'; import ListCard, { ICardProps } from '../ListCard'; import styles from './index.module.css'; export interface IFeaturesProps { title: string; features: ICardProps[]; } const Features: React.FC = ({ title, features }) => { const renderedCards = features.map(card => ( )); return (
{title}
{renderedCards}
); }; export default Features;