import type { Meta, StoryObj } from '@storybook/react' import { EmptyCard, StatCard, ToolCard } from './Card' const meta: Meta = { title: 'Components/Card', parameters: { layout: 'centered' }, } export default meta export const Stat: StoryObj = { render: () => (
), } export const Tool: StoryObj = { render: () => (
), } export const Empty: StoryObj = { render: () => (
alert('추가!')} />
), }