storybook/docs/snippets/common/storybook-addons-api-useaddonstate.js.mdx
2020-08-11 01:11:41 +01: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>;
};
```