mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 09:01:07 +08:00
19 lines
415 B
Plaintext
19 lines
415 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>
|
|
);
|
|
};
|
|
``` |