--- import type { HTMLAttributes } from 'astro/types'; export interface Props { id: string; initial?: boolean; } const { id, initial } = Astro.props; const attributes: HTMLAttributes<'div'> = initial ? { 'data-initial': 'true' } : {}; ---