Add frontmatter.title to types

This commit is contained in:
prototypa
2023-07-27 14:50:26 -04:00
parent f7b00276e0
commit d20b298028

View File

@ -3,7 +3,11 @@ import Layout from '~/layouts/PageLayout.astro';
import { MetaSEO } from '~/types';
export interface Props {}
export interface Props {
frontmatter: {
title?: string
}
}
const { frontmatter } = Astro.props;