Sharkey/packages/frontend/src/components/MkPushNotificationAllowButton.stories.ts

17 lines
431 B
TypeScript
Raw Normal View History

2023-03-19 22:22:14 +09:00
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',
},
2023-03-19 22:22:14 +09:00
};
export default meta;