--- import Show from './Show.astro'; import type { IStory } from '../types.js'; export interface Props { story: IStory; } const { story } = Astro.props; ---