fbredius/storybook

View on GitHub
docs/snippets/common/custom-docs-page.js-component.js.mdx

Summary

Maintainability
Test Coverage
```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>
  );
}
```