mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 15:31:16 +08:00
9 lines
168 B
Plaintext
9 lines
168 B
Plaintext
```js
|
|
// .storybook/my-addon/register.js
|
|
|
|
export const Panel = () => {
|
|
const state = useStorybookApi();
|
|
|
|
return <div>do something with storybook's api</div>;
|
|
};
|
|
``` |