From 59e8c71786fd1c154904b3fefa7d26d88f4d92d2 Mon Sep 17 00:00:00 2001 From: Marcus Otterström Date: Fri, 8 Jul 2022 22:08:32 +0200 Subject: Format astro files in examples (#3862) --- examples/basics/src/components/Card.astro | 42 +++++++++++++++---------------- 1 file changed, 21 insertions(+), 21 deletions(-) (limited to 'examples/basics/src/components') diff --git a/examples/basics/src/components/Card.astro b/examples/basics/src/components/Card.astro index 53b67a9da..4039d4f4f 100644 --- a/examples/basics/src/components/Card.astro +++ b/examples/basics/src/components/Card.astro @@ -1,26 +1,26 @@ --- export interface Props { - title: string, - body: string, - href: string, + title: string; + body: string; + href: string; } -const {href, title, body} = Astro.props; +const { href, title, body } = Astro.props; --- +