Sharkey/packages/frontend/src/pages/admin/other-settings.stories.ts
2023-03-20 14:56:34 +09:00

16 lines
344 B
TypeScript

import { Meta, Story } from '@storybook/vue3';
import other_settings from './other-settings.vue';
const meta = {
title: 'pages/admin/other-settings',
component: other_settings,
};
export const Default = {
components: {
other_settings,
},
template: '<other_settings />',
parameters: {
layout: 'fullscreen',
},
};
export default meta;