storybook/docs/snippets/common/storybook-addons-api-useaddonstate.js.mdx
2020-10-07 12:23:34 +08:00

14 lines
438 B
Plaintext

```js
// .storybook/my-addon/register.js
export const Panel = () => {
const [state, setState] = useAddonState('my/addon-id', 'initial state');
return <button onClick={() => setState('a new value')}>the state = "{state}"</button>;
};
export const Tool = () => {
const [state, setState] = useAddonState('my/addon-id', 'initial state');
return <button onClick={() => setState('a new value')}>the state = "{state}"</button>;
};
```