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