storybook/docs/snippets/common/custom-docs-page.js-component.js.mdx
2021-11-04 18:03:37 +00:00

19 lines
400 B
Plaintext

```js
// CustomDocumentationComponent.js|jsx
import React from 'react';
export function CustomDocumentationComponent() {
return (
<div>
<h1>Replacing DocsPage with a custom component</h1>
<p>
The Docs page can be customized with your own custom content written as a React Component.
</p>
<p>
Write your own code here👇
</p>
</div>
);
}
```