We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 587b33a commit a52df81Copy full SHA for a52df81
1 file changed
packages/gatsby-plugin-mdx/README.md
@@ -475,7 +475,9 @@ all of the MDX content.
475
import { MDXProvider } from "@mdx-js/react"
476
477
const MyH1 = props => <h1 style={{ color: "tomato" }} {...props} />
478
-const MyParagraph = props => <p style={{ fontSize: "18px", lineHeight: 1.6 }} />
+const MyParagraph = props => (
479
+ <p style={{ fontSize: "18px", lineHeight: 1.6 }} {...props} />
480
+)
481
482
const components = {
483
h1: MyH1,
0 commit comments