mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 16:11:33 +08:00
13 lines
237 B
Plaintext
13 lines
237 B
Plaintext
```js
|
|
// /my-addon/register.js
|
|
|
|
import React from 'react';
|
|
|
|
import { useStorybookApi } from '@storybook/api';
|
|
|
|
export const Panel = () => {
|
|
const state = useStorybookApi();
|
|
|
|
return <div>do something with storybook's api</div>;
|
|
};
|
|
``` |