--- import type { CollectionKey } from "astro:content"; import ArticleBody from "./ArticleBody.astro"; import ArticleBodyContent from "./ArticleBodyContent.astro"; interface Props { articleSlug: string; collectionName: CollectionKey; } const { articleSlug, collectionName } = Astro.props; ---