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