Skip to content

Latest commit

 

History

History
9 lines (7 loc) · 239 Bytes

button-story-project-args-theme.js.mdx

File metadata and controls

9 lines (7 loc) · 239 Bytes
// 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' };