remove unnecessary story
This commit is contained in:
parent
2df10937de
commit
2eb5d0e2f4
|
@ -1,28 +0,0 @@
|
|||
import type { Meta, StoryObj } from '@storybook/react'
|
||||
|
||||
import DashboardCardWrapper from './DashboardCardWrapper'
|
||||
|
||||
const meta = {
|
||||
title: 'Dashboard/DashboardCardWrapper',
|
||||
component: DashboardCardWrapper,
|
||||
parameters: {
|
||||
layout: 'centered',
|
||||
},
|
||||
tags: ['autodocs'],
|
||||
} satisfies Meta<typeof DashboardCardWrapper>
|
||||
|
||||
export default meta
|
||||
type Story = StoryObj<typeof meta>
|
||||
|
||||
export const Default: Story = {
|
||||
args: {
|
||||
children: 'Default',
|
||||
},
|
||||
}
|
||||
|
||||
export const WithoutPadding: Story = {
|
||||
args: {
|
||||
children: 'Default',
|
||||
padding: '0',
|
||||
},
|
||||
}
|
Loading…
Reference in New Issue