From d9e65227b2d93f31514a0f0781019187e9a31603 Mon Sep 17 00:00:00 2001 From: Nate Moore Date: Mon, 13 Dec 2021 12:30:19 -0600 Subject: [PATCH] fix(#2190): migration typo (#2191) --- docs/src/pages/de/migration/0.21.0.md | 2 +- 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' ---