Sharkey/packages/frontend/.storybook/preview.ts
Acid Chicken (硫酸鶏) 1dfcca7b9c
build(#10336): init
2023-03-19 22:25:06 +09:00

15 lines
282 B
TypeScript

import type { Preview } from '@storybook/vue3';
import { applyTheme } from '../src/scripts/theme';
import theme from './theme';
import '../src/style.scss';
applyTheme(theme);
const preview = {
parameters: {
layout: 'centered',
},
} satisfies Preview;
export default preview;