--- import { hrefOfGlossaryEntry, type GlossaryEntry } from "../lib/glossary"; export interface Props { entries?: GlossaryEntry[]; wide?: boolean; } const { entries = [], wide = false, } = Astro.props; ---
{entries.map((entry) => ( {entry.data.term} {entry.data.definitionShort} ))}