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