A social knowledge tool for researchers built on ATProto
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 },
15};