--- import PrettyDate from "./PrettyDate.astro"; export type DateFormat = (date: Date) => string; interface Props { title: string | null; } const { title, ...props } = Astro.props; ---