mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 16:11:33 +08:00
10 lines
171 B
Plaintext
10 lines
171 B
Plaintext
```js
|
|
// /my-addon/register.js
|
|
|
|
addons.register('my-organisation/my-addon', (api) => {
|
|
api.setQueryParams({
|
|
abc: 'this is abc',
|
|
bbc: 'this is bbc',
|
|
});
|
|
});
|
|
``` |