diff options
author | 2021-08-23 20:44:36 +0000 | |
---|---|---|
committer | 2021-08-23 20:44:36 +0000 | |
commit | 010c71e16ad885376dea548a7a0f8980174a207e (patch) | |
tree | efa6f94e8f41ea4ecbdd9a0395499268a0c609c0 /docs/src | |
parent | efb41f22c34948fedfd51ba4e228e807ed7d856a (diff) | |
download | astro-010c71e16ad885376dea548a7a0f8980174a207e.tar.gz astro-010c71e16ad885376dea548a7a0f8980174a207e.tar.zst astro-010c71e16ad885376dea548a7a0f8980174a207e.zip |
[ci] yarn format
Diffstat (limited to 'docs/src')
-rw-r--r-- | docs/src/pages/reference/builtin-components.md | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/docs/src/pages/reference/builtin-components.md b/docs/src/pages/reference/builtin-components.md index ce64819d9..9465a3428 100644 --- a/docs/src/pages/reference/builtin-components.md +++ b/docs/src/pages/reference/builtin-components.md @@ -31,7 +31,6 @@ import { Prism } from 'astro/components'; This component provides syntax highlighting for code blocks. Since this never changes in the client it makes sense to use an Astro component (it's equally reasonable to use a framework component for this kind of thing; Astro is server-only by default for all frameworks!). - ## `<Debug />` ```astro @@ -48,4 +47,4 @@ const serverObject = { <Debug {serverObject} /> ``` -This component provides a way to inspect values on the clientside, without any JavaScript. +This component provides a way to inspect values on the clientside, without any JavaScript. |