storybook/docs/_snippets/storybook-preview-import-global-styles.md
2024-11-17 16:46:37 +00:00

467 B

import '../src/styles/global.css';

export default {
  parameters: {},
};
// 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;