summaryrefslogtreecommitdiff
path: root/packages/frontend/src/pages/flash/flash-index.stories.ts
blob: 327506577f8b828a2e36c7638020231bc0b7e0a2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import { Meta, Story } from '@storybook/vue3';
import flash_index from './flash-index.vue';
const meta = {
	title: 'pages/flash/flash-index',
	component: flash_index,
};
export const Default = {
	render(args, { argTypes }) {
		return {
			components: {
				flash_index,
			},
			props: Object.keys(argTypes),
			template: '<flash_index v-bind="$props" />',
		};
	},
	parameters: {
		layout: 'fullscreen',
	},
};
export default meta;