Back to Storybook

Storybook Addons Api On

docs/_snippets/storybook-addons-api-on.md

10.3.6288 B
Original Source
js
addons.register('my-organisation/my-addon', (api) => {
  // Logs the event data to the browser console whenever the event is emitted.
  api.on('custom-addon-event', (eventData) => console.log(eventData));
});