Migrate more code to typescript

This commit is contained in:
prototypa
2023-01-02 12:20:26 -05:00
parent 6998cc7602
commit 024825ec59
14 changed files with 68 additions and 37 deletions

View File

@ -4,6 +4,12 @@ import '~/assets/styles/base.css';
import MetaTags from '~/components/core/MetaTags.astro';
import BasicScripts from '~/components/core/BasicScripts.astro';
import { MetaSEO } from '~/types';
export interface Props {
meta?: MetaSEO;
}
const { meta = {} } = Astro.props;
---