diff options
Diffstat (limited to 'packages/frontend/src/components/MkPushNotificationAllowButton.stories.ts')
| -rw-r--r-- | packages/frontend/src/components/MkPushNotificationAllowButton.stories.ts | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/packages/frontend/src/components/MkPushNotificationAllowButton.stories.ts b/packages/frontend/src/components/MkPushNotificationAllowButton.stories.ts index 20af967780..673f5e643c 100644 --- a/packages/frontend/src/components/MkPushNotificationAllowButton.stories.ts +++ b/packages/frontend/src/components/MkPushNotificationAllowButton.stories.ts @@ -1,9 +1,9 @@ -import { Meta, Story } from '@storybook/vue3'; +import { Meta, StoryObj } from '@storybook/vue3'; import MkPushNotificationAllowButton from './MkPushNotificationAllowButton.vue'; const meta = { title: 'components/MkPushNotificationAllowButton', component: MkPushNotificationAllowButton, -}; +} satisfies Meta<typeof MkPushNotificationAllowButton>; export const Default = { render(args, { argTypes }) { return { @@ -17,5 +17,5 @@ export const Default = { parameters: { layout: 'centered', }, -}; +} satisfies StoryObj<typeof MkPushNotificationAllowButton>; export default meta; |