Skip to content
This repository was archived by the owner on Dec 16, 2024. It is now read-only.

Commit 1cf9434

Browse files
committed
docs: spacings
1 parent 85d2aa2 commit 1cf9434

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -175,6 +175,7 @@ and will fast-refresh its changes in dev. mode.
175175
```astro
176176
---
177177
import content from 'content/get';
178+
178179
import { Markup } from 'astro-remote';
179180
import Gallery from 'src/components/Gallery.astro';
180181
import Link from 'src/components/Link.astro';
@@ -186,9 +187,9 @@ const content = someNamedArticle?.main?.body;
186187
const title = someNamedArticle?.main?.frontmatter?.title;
187188
const someMeta = someNamedArticle?.meta?.foo;
188189
189-
/** Augment markup by mapping your own Astro / React / Vue / Svelte components
190+
/** Augment markup by mapping your Astro / React / Vue / Svelte components
190191
* Server-side rendering only (no client-side hydration) */
191-
const components = { Gallery, 'a': Link };
192+
const components = { Gallery, 'a': Link, /* … */ };
192193
---
193194
194195
{ title && <h1>{title}</h1> }

0 commit comments

Comments
 (0)