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