--- import Field from './Field.astro'; import { FormGroup } from './core/form-group'; export interface Props { group: FormGroup; } const { group } = Astro.props; ---
{group.name && {group.name}} {group?.controls?.map((control) => )}