mirror of
https://github.com/misskey-dev/misskey.git
synced 2026-04-30 20:25:50 +02:00
22 lines
487 B
TypeScript
22 lines
487 B
TypeScript
import { Meta, StoryObj } from '@storybook/vue3';
|
|
import privacy_ from './privacy.vue';
|
|
const meta = {
|
|
title: 'pages/settings/privacy',
|
|
component: privacy_,
|
|
} satisfies Meta<typeof privacy_>;
|
|
export const Default = {
|
|
render(args, { argTypes }) {
|
|
return {
|
|
components: {
|
|
privacy_,
|
|
},
|
|
props: Object.keys(argTypes),
|
|
template: '<privacy_ v-bind="$props" />',
|
|
};
|
|
},
|
|
parameters: {
|
|
layout: 'fullscreen',
|
|
},
|
|
} satisfies StoryObj<typeof privacy_>;
|
|
export default meta;
|