mirror of
https://github.com/misskey-dev/misskey.git
synced 2026-05-04 21:15:45 +02:00
17 lines
293 B
TypeScript
17 lines
293 B
TypeScript
import { Meta, Story } from '@storybook/vue3';
|
|
import drive from './drive.vue';
|
|
const meta = {
|
|
title: 'pages/settings/drive',
|
|
component: drive,
|
|
};
|
|
export const Default = {
|
|
components: {
|
|
drive,
|
|
},
|
|
template: '<drive />',
|
|
parameters: {
|
|
layout: 'fullscreen',
|
|
},
|
|
};
|
|
export default meta;
|