import type { Meta, StoryObj } from '@storybook/react'
import { Plan } from './index'

const meta: Meta<typeof Plan> = {
  component: Plan,
  title: 'organisms/Plan',
  args: {
  }
}

export default meta

type Story = StoryObj<typeof Plan>

export const PlanPrimary: Story = {
}
