mirror of
https://github.com/paricafe/misskey.git
synced 2024-12-02 01:16:44 -06:00
14 lines
257 B
TypeScript
14 lines
257 B
TypeScript
|
import { Meta, Story } from '@storybook/vue3';
|
||
|
import index from './index.vue';
|
||
|
const meta = {
|
||
|
title: 'widgets/server-metric/index',
|
||
|
component: index,
|
||
|
};
|
||
|
export const Default = {
|
||
|
components: {
|
||
|
index,
|
||
|
},
|
||
|
template: '<index />',
|
||
|
};
|
||
|
export default meta;
|