storybook/docs/snippets/react/configure-mock-provider-with-story-parameter.js.mdx
2024-04-30 22:21:31 -06:00

18 lines
252 B
Plaintext

```js
// Button.stories.js
import { Button } from './Button';
export default {
component: Button,
};
// Wrapped in light theme
export const Default = {};
// Wrapped in dark theme
export const Dark = {
parameters: {
theme: 'dark',
},
};
```