--- export interface Props { items?: string[]; } const { items = [ 'STUDIO MOSTUKI', 'EST. 2018', 'PARIS / FR', '10 MARIAGES / AN', 'REPONSE < 48H', 'LIVRAISON 4 SEM.', ], } = Astro.props; const doubled = [...items, ...items]; ---