import type { Meta, StoryObj } from '@storybook/vue3-vite' import { Card as NychCard, Button as NychButton, Tag as NychTag } from '@nychthemeron/library' const meta = { title: 'Components/Card', component: NychCard, parameters: { layout: 'centered', }, tags: ['autodocs'], } satisfies Meta export default meta type Story = StoryObj export const Default: Story = { render: () => ({ components: { NychCard }, template: ` `, }), } export const WithFooter: Story = { render: () => ({ components: { NychCard, NychButton }, template: ` `, }), } export const WithHeaderAndTag: Story = { render: () => ({ components: { NychCard, NychTag }, template: ` `, }), }