--- // src/components/List.astro interface Props { items: string[]; } const { items } = Astro.props; ---