mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-28 11:43:09 +02:00
14 lines
289 B
TypeScript
14 lines
289 B
TypeScript
|
import { Meta, Story } from '@storybook/vue3';
|
||
|
import announcements from './announcements.vue';
|
||
|
const meta = {
|
||
|
title: 'pages/announcements',
|
||
|
component: announcements,
|
||
|
};
|
||
|
export const Default = {
|
||
|
components: {
|
||
|
announcements,
|
||
|
},
|
||
|
template: '<announcements />',
|
||
|
};
|
||
|
export default meta;
|