storybook/docs/snippets/common/button-story-project-args-theme.js.mdx
2021-12-20 15:09:46 +11:00

10 lines
233 B
Plaintext

```js
// preview.js
// All stories expect a theme arg
export const argTypes = { theme: { control: { options: ['light', 'dark'] } } };
// The default value of the theme arg to all stories
export const args = { theme: 'light' };
```