mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 07:21:16 +08:00
12 lines
298 B
TypeScript
12 lines
298 B
TypeScript
import React from 'react';
|
|
import { Global, ThemeProvider, convert, themes, createReset } from '@storybook/theming';
|
|
|
|
export const decorators = [
|
|
(StoryFn) => (
|
|
<ThemeProvider theme={convert(themes.light)}>
|
|
<Global styles={createReset} />
|
|
<StoryFn />
|
|
</ThemeProvider>
|
|
),
|
|
];
|