diff --git a/src/pages/Dashboard/SyncStatusCards/ConsensusClientCard.stories.tsx b/src/pages/Dashboard/SyncStatusCards/ConsensusClientCard.stories.tsx new file mode 100644 index 00000000..206ca76c --- /dev/null +++ b/src/pages/Dashboard/SyncStatusCards/ConsensusClientCard.stories.tsx @@ -0,0 +1,20 @@ +import type { Meta, StoryObj } from '@storybook/react' + +import ConsensusClientCard from './ConsensusClientCard' + +const meta = { + title: 'Dashboard/ConsensusClientCard', + component: ConsensusClientCard, + parameters: { + layout: 'centered', + }, + tags: ['autodocs'], +} satisfies Meta + +export default meta +type Story = StoryObj + +export const Default: Story = { + args: { value: 200000, total: 123562 }, +} + \ No newline at end of file