Files
misskey/packages/frontend/src/components/MkPushNotificationAllowButton.stories.ts
2023-03-20 14:56:34 +09:00

17 lines
431 B
TypeScript

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;