diff options
author | 2021-12-13 12:30:19 -0600 | |
---|---|---|
committer | 2021-12-13 10:30:19 -0800 | |
commit | d9e65227b2d93f31514a0f0781019187e9a31603 (patch) | |
tree | d529c32ba308f34308bc18d292f26fbbd3f03a7d /docs/src | |
parent | 80c65e94973b937b408aabc39f75446ae03bf1e8 (diff) | |
download | astro-d9e65227b2d93f31514a0f0781019187e9a31603.tar.gz astro-d9e65227b2d93f31514a0f0781019187e9a31603.tar.zst astro-d9e65227b2d93f31514a0f0781019187e9a31603.zip |
fix(#2190): migration typo (#2191)
Diffstat (limited to 'docs/src')
-rw-r--r-- | docs/src/pages/de/migration/0.21.0.md | 2 | ||||
-rw-r--r-- | docs/src/pages/migration/0.21.0.md | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/docs/src/pages/de/migration/0.21.0.md b/docs/src/pages/de/migration/0.21.0.md index 1ec7742c7..3d8409ded 100644 --- a/docs/src/pages/de/migration/0.21.0.md +++ b/docs/src/pages/de/migration/0.21.0.md @@ -68,7 +68,7 @@ In Astro v0.21 können Komponenten aus beliebigen Frameworks in Markdown-Dateien ```markdown --- -Layout: '...' +layout: '...' setup: | import MeineReactKomponente from '../components/MeineReactKomponente.jsx' --- diff --git a/docs/src/pages/migration/0.21.0.md b/docs/src/pages/migration/0.21.0.md index 3adc7e6b6..08154ee7c 100644 --- a/docs/src/pages/migration/0.21.0.md +++ b/docs/src/pages/migration/0.21.0.md @@ -68,7 +68,7 @@ In Astro v0.21, Components from any framework can be used within Markdown files. ```markdown --- -Layout: '...' +layout: '...' setup: | import MyReactComponent from '../components/MyReactComponent.jsx' --- |