From aa994c4793fc42dcb3e55212a35e86adde6a4fd2 Mon Sep 17 00:00:00 2001 From: Ayo Ayco Date: Wed, 10 Apr 2024 16:39:11 +0200 Subject: [PATCH] chore: remove indentation in readme script examples --- README.md | 58 +++++++++++++++++++++++++++---------------------------- 1 file changed, 29 insertions(+), 29 deletions(-) diff --git a/README.md b/README.md index f1b3e49..c0f3b9f 100644 --- a/README.md +++ b/README.md @@ -31,9 +31,9 @@ const data = { ``` @@ -57,17 +57,17 @@ export type Data = typeof data; ``` @@ -87,10 +87,10 @@ export interface Props { ``` @@ -119,11 +119,11 @@ In Child.astro:

I'm a child. I have access to the appConfig in index!

``` @@ -131,11 +131,11 @@ In GrandChild.astro: ```astro

I'm a grand child. I also have access to the appConfig in index!

``` @@ -159,13 +159,13 @@ export type Data = typeof data; ```