A social knowledge tool for researchers built on ATProto

docs: note card story

+15
+15
src/webapp/features/notes/components/noteCard/NoteCard.stories.tsx
··· 1 + import type { Meta, StoryObj } from '@storybook/nextjs-vite'; 2 + import NoteCard from './NoteCard'; 3 + 4 + const meta = { 5 + component: NoteCard, 6 + } satisfies Meta<typeof NoteCard>; 7 + 8 + export default meta; 9 + type Story = StoryObj<typeof meta>; 10 + 11 + export const Primary: Story = { 12 + args: { 13 + note: `This is the note's content`, 14 + }, 15 + };