Added docs to show how to override SB block when using MDX

This commit is contained in:
patrick.lafrance 2019-11-27 18:30:50 -05:00
parent 51b1739038
commit 782600b376

View File

@ -60,6 +60,22 @@ addParameters({
});
```
You can even override a Storybook *block* component.
Here's how you might insert a custom `<Preview />` block:
```js
import { PreviewBlock } from './PreviewBlock';
addParameters({
docs: {
components: {
Preview: PreviewBlock,
},
},
});
```
## More resources
Want to learn more? Here are some more articles on Storybook Docs: