mirror of
https://github.com/paricafe/misskey.git
synced 2024-12-01 20:36:44 -06:00
16 lines
298 B
TypeScript
16 lines
298 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 />',
|
|
parameters: {
|
|
layout: 'centered',
|
|
},
|
|
};
|
|
export default meta;
|