summaryrefslogtreecommitdiff
path: root/packages/frontend/src/pages/notifications.stories.ts
blob: e7fab3655ba528db734b7a07ccfd010e2ef01279 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
/* eslint-disable @typescript-eslint/explicit-function-return-type */
/* eslint-disable import/no-default-export */
import { Meta, StoryObj } from '@storybook/vue3';
import notifications_ from './notifications.vue';
const meta = {
	title: 'pages/notifications',
	component: notifications_,
} satisfies Meta<typeof notifications_>;
export const Default = {
	render(args) {
		return {
			components: {
				notifications_,
			},
			setup() {
				return {
					args,
				};
			},
			computed: {
				props() {
					return {
						...args,
					};
				},
			},
			template: '<notifications_ v-bind="props" />',
		};
	},
	parameters: {
		layout: 'fullscreen',
	},
} satisfies StoryObj<typeof notifications_>;
export default meta;