mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-09 00:19:13 +08:00
15 lines
278 B
Plaintext
15 lines
278 B
Plaintext
```ts
|
|
// .storybook/preview.ts
|
|
|
|
// Replace your-framework with the framework you are using (e.g., react, vue3)
|
|
import { Preview } from '@storybook/your-framework';
|
|
|
|
import '../src/styles/global.css';
|
|
|
|
const preview: Preview = {
|
|
parameters: {},
|
|
};
|
|
|
|
export default preview;
|
|
```
|