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