mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 05:41:07 +08:00
16 lines
360 B
Plaintext
16 lines
360 B
Plaintext
```js
|
|
// .storybook/my-addon/register.js
|
|
|
|
import { STORY_CHANGED } from '@storybook/core-events';
|
|
export const Panel = () => {
|
|
const emit = useChannel({
|
|
STORY_CHANGED: (...args) => console.log(...args),
|
|
});
|
|
|
|
return (
|
|
<button onClick={() => emit('my-event-type', { some: 'data' })}>
|
|
clicking this will emit an event
|
|
</button>
|
|
);
|
|
};
|
|
``` |