summaryrefslogtreecommitdiff
path: root/packages/frontend/src/components/MkPushNotificationAllowButton.stories.ts
blob: 339cfc8ecc1520d47f4b2a2190259e33b1fcea3f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import { Meta, Story } from '@storybook/vue3';
import MkPushNotificationAllowButton from './MkPushNotificationAllowButton.vue';
const meta = {
	title: 'components/MkPushNotificationAllowButton',
	component: MkPushNotificationAllowButton,
};
export const Default = {
	components: {
		MkPushNotificationAllowButton,
	},
	template: '<MkPushNotificationAllowButton />',
	parameters: {
		layout: 'centered',
	},
};
export default meta;