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