--- import type { ProcessSection } from '../../types/home-sections'; interface Props { section: ProcessSection } const { section } = Astro.props; --- {section.heading} {section.steps.map(({ icon, label }) => ( {label} ))}
{label}