export function Features({ features }: { features: string[] }) { return ( {features.map((feature, index) => ( ))}
Feature
{feature}
); }