mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 04:21:07 +08:00
14 lines
438 B
Plaintext
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>;
|
|
};
|
|
``` |