From 98227b273fbe7da12790571f70f2a334cb0c1c30 Mon Sep 17 00:00:00 2001 From: Ben Schwarz Date: Tue, 23 Nov 2021 10:35:25 +1100 Subject: [PATCH] Fix typo in MDX guide (#31709) In this PR: - [x] Fixes a 1 character typo in the newly merged MDX guide --- docs/advanced-features/using-mdx.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/advanced-features/using-mdx.md b/docs/advanced-features/using-mdx.md index 3117e49e75..238eabb748 100644 --- a/docs/advanced-features/using-mdx.md +++ b/docs/advanced-features/using-mdx.md @@ -97,7 +97,7 @@ author: 'Rich Haines' ### Layouts -To add a layout to your MDX page, create a new component and import it into the MDX page. Then you can wrap the MDx page with your layout component: +To add a layout to your MDX page, create a new component and import it into the MDX page. Then you can wrap the MDX page with your layout component: ```md import { MyComponent, MyLayoutComponent } from 'my-components'