mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 02:01:06 +08:00
11 lines
239 B
JavaScript
11 lines
239 B
JavaScript
import React from 'react';
|
|
import { ThemeProvider, convert, themes } from '@storybook/theming';
|
|
|
|
export const decorators = [
|
|
(StoryFn) => (
|
|
<ThemeProvider theme={convert(themes.light)}>
|
|
<StoryFn />
|
|
</ThemeProvider>
|
|
),
|
|
];
|