import { Feature } from 'shared/types' export function HomeFeature(props: { features: Feature[] }) { return (
{props.features.map((feature) => { const { icon, title, details } = feature return (
{icon}

{title}

{details}

) })}
) }