This repository has no description
508 B
24 lines
1import type { Meta, StoryObj } from '@storybook/nextjs-vite';
2import NoteCard from './NoteCard';
3
4const meta = {
5 component: NoteCard,
6} satisfies Meta<typeof NoteCard>;
7
8export default meta;
9type Story = StoryObj<typeof meta>;
10
11export const Primary: Story = {
12 args: {
13 note: `This is the note's content`,
14 author: {
15 id: 'id',
16 name: 'name',
17 handle: 'handle',
18 avatarUrl: 'avatar url',
19 description: 'description',
20 },
21 id: 'note id',
22 createdAt: '2025',
23 },
24};