mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 05:51:21 +08:00
12 lines
238 B
Plaintext
12 lines
238 B
Plaintext
```js
|
|
// /my-addon/manager.js
|
|
|
|
addons.register(ADDON_ID, () => {
|
|
addons.add(PANEL_ID, {
|
|
type: types.PANEL,
|
|
title: 'My Addon',
|
|
render: () => <div>Addon tab content</div>,
|
|
paramKey: 'myAddon', // this element
|
|
});
|
|
});
|
|
``` |