mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 05:31:05 +08:00
10 lines
285 B
Markdown
10 lines
285 B
Markdown
```js filename="my-addon/src/manager.js|ts" renderer="common" language="js"
|
|
addons.register('my-organisation/my-addon', (api) => {
|
|
api.setQueryParams({
|
|
exampleParameter: 'Sets the example parameter value',
|
|
anotherParameter: 'Sets the another parameter value',
|
|
});
|
|
});
|
|
```
|
|
|