feat: props interface for back component

This commit is contained in:
Ayo 2022-09-26 10:54:31 +02:00
parent c10dacfb5f
commit a2d4c8a2d6

View file

@ -1,4 +1,7 @@
--- ---
export interface Props {
url: string;
}
const { url } = Astro.props; const { url } = Astro.props;
--- ---