--- import type { IComment } from '../types.js'; import For from './For.astro'; import Show from './Show.astro'; import Toggle from './Toggle.astro'; interface Props { comment: IComment; } const { comment } = Astro.props; ---