From a2d4c8a2d61f32aff41a5a839bcbeb436483b01e Mon Sep 17 00:00:00 2001 From: Ayo Date: Mon, 26 Sep 2022 10:54:31 +0200 Subject: [PATCH] feat: props interface for back component --- src/components/Back.astro | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/components/Back.astro b/src/components/Back.astro index 3aaf66a..addc1ba 100644 --- a/src/components/Back.astro +++ b/src/components/Back.astro @@ -1,4 +1,7 @@ --- +export interface Props { + url: string; +} const { url } = Astro.props; ---