1
0
mirror of https://github.com/misskey-dev/misskey.git synced 2026-06-02 16:04:20 +02:00

build(#10336): init

This commit is contained in:
Acid Chicken (硫酸鶏)
2023-03-19 22:22:14 +09:00
parent 4a989f7ebb
commit 1dfcca7b9c
437 changed files with 10295 additions and 154 deletions

View File

@@ -0,0 +1,13 @@
import { Meta, Story } from '@storybook/vue3';
import MkSpacer from './MkSpacer.vue';
const meta = {
title: 'components/global/MkSpacer',
component: MkSpacer,
};
export const Default = {
components: {
MkSpacer,
},
template: '<MkSpacer />',
};
export default meta;