storybook/docs/_snippets/storybook-addons-api-setqueryparams.md
2024-06-13 17:53:08 +01:00

285 B

addons.register('my-organisation/my-addon', (api) => {
  api.setQueryParams({
    exampleParameter: 'Sets the example parameter value',
    anotherParameter: 'Sets the another parameter value',
  });
});