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