mirror of
https://github.com/storybookjs/storybook.git
synced 2025-03-21 05:02:39 +08:00
10 lines
239 B
Plaintext
10 lines
239 B
Plaintext
```js
|
|
// preview.js
|
|
|
|
// All stories expect a theme arg
|
|
export const argTypes = { theme: { control: 'select', options: ['light', 'dark'] } };
|
|
|
|
// The default value of the theme arg to all stories
|
|
export const args = { theme: 'light' };
|
|
```
|