mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 05:51:21 +08:00
19 lines
378 B
Plaintext
19 lines
378 B
Plaintext
```js
|
|
// /my-addon/manager.js
|
|
|
|
import React from 'react';
|
|
|
|
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>
|
|
);
|
|
};
|
|
``` |