feat: create story for sync card content

This commit is contained in:
RadoslavDimchev 2023-09-13 16:42:58 +03:00
parent 12d8aaeedf
commit 3bf7d7ad03
1 changed files with 19 additions and 0 deletions

View File

@ -0,0 +1,19 @@
import type { Meta, StoryObj } from '@storybook/react'
import SyncCardContent from './SyncCardContent'
const meta = {
title: 'Dashboard/SyncCardContent',
component: SyncCardContent,
parameters: {
layout: 'centered',
},
tags: ['autodocs'],
} satisfies Meta<typeof SyncCardContent>
export default meta
type Story = StoryObj<typeof meta>
export const Default: Story = {
args: {},
}