import type { Meta, StoryObj } from '@storybook/nextjs-vite'; import NoteCard from './NoteCard'; const meta = { component: NoteCard, } satisfies Meta; export default meta; type Story = StoryObj; export const Primary: Story = { args: { note: `This is the note's content`, }, };