--- import Show from './Show.astro'; interface Props { each: Iterable; } const { each } = Astro.props; --- { (async function* () { for await (const value of each) { let html = await Astro.slots.render('default', [value]); yield ; yield '\n'; } })() }