fix: wrong props type

dev
Antonio De Lucreziis 3 months ago
parent 27317b38b1
commit 3316f6a6ec

@ -10,12 +10,12 @@ import '@fontsource/iosevka/latin.css'
import '../styles/main.scss' import '../styles/main.scss'
type Props = { type Props = {
title: string title?: string
description: string description?: string
thumbnail: string thumbnail?: string
/** Tags for the page, used for styling */ /** Tags for the page, used for styling */
pageTags: string | string[] pageTags?: string | string[]
} }
const { title, description, thumbnail, pageTags } = Astro.props const { title, description, thumbnail, pageTags } = Astro.props

Loading…
Cancel
Save