mirror of
https://github.com/misskey-dev/misskey.git
synced 2026-05-17 13:45:33 +02:00
14 lines
258 B
TypeScript
14 lines
258 B
TypeScript
import { Meta, Story } from '@storybook/vue3';
|
|
import MkDrive from './MkDrive.vue';
|
|
const meta = {
|
|
title: 'components/MkDrive',
|
|
component: MkDrive,
|
|
};
|
|
export const Default = {
|
|
components: {
|
|
MkDrive,
|
|
},
|
|
template: '<MkDrive />',
|
|
};
|
|
export default meta;
|