We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 755c17b commit 280bc43Copy full SHA for 280bc43
README.md
@@ -57,7 +57,7 @@ Think of the implementation like applying styles in CSS. changes to the `body` e
57
58
```jsx
59
const copy = `
60
-This is some text which is red because of the root style, which is also really small!
+This is some text which is red because of the body style, which is also really small!
61
62
\`\`\`
63
//This is a code block woooo
@@ -82,7 +82,7 @@ const App: () => React$Node = () => {
82
<Markdown
83
mergeStyle={true}
84
style={{
85
- root: {color: 'red', fontSize: 10},
+ body: {color: 'red', fontSize: 10},
86
heading1: {color: 'purple'},
87
codeBlock: {color: 'black', fontSize: 14}
88
}}
0 commit comments