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

19 lines
419 B
Plaintext

```ts
// CustomDocumentationComponent.ts|tsx
import React from 'react';
export const CustomDocumentationComponent: React.VFC<{}> = () => {
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>
);
};
```