puyoskey/packages/frontend/src/pages/not-found.stories.ts
2023-03-19 22:31:18 +09:00

13 lines
265 B
TypeScript

import { Meta, Story } from '@storybook/vue3';
import not_found from './not-found.vue';
const meta = {
title: 'pages/not-found',
component: not_found,
};
export const Default = {
components: {
not_found,
},
template: '<not_found />',
};
export default meta;