mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-08 02:31:49 +08:00
6 lines
236 B
Markdown
6 lines
236 B
Markdown
```js filename="CSF 2 - Button.stories.js|jsx|ts|tsx" renderer="common" language="js"
|
|
export const PrimaryOnDark = Primary.bind({});
|
|
PrimaryOnDark.args = Primary.args;
|
|
PrimaryOnDark.parameters = { background: { default: 'dark' } };
|
|
```
|