--- import type { VideoFileType } from '../lib/video'; import VideoListItem from './VideoListItem.astro'; export interface Props { heading: string; videos: VideoFileType[]; } const { heading, videos } = Astro.props; ---