mirror of
https://activitypub.software/TransFem-org/Sharkey
synced 2024-12-04 11:47:27 +00:00
14 lines
253 B
TypeScript
14 lines
253 B
TypeScript
|
import { Meta, Story } from '@storybook/vue3';
|
||
|
import clicker from './clicker.vue';
|
||
|
const meta = {
|
||
|
title: 'pages/clicker',
|
||
|
component: clicker,
|
||
|
};
|
||
|
export const Default = {
|
||
|
components: {
|
||
|
clicker,
|
||
|
},
|
||
|
template: '<clicker />',
|
||
|
};
|
||
|
export default meta;
|