Skip to content

Commit

Permalink
feat: 모집공고 정보를 보여주는 모달 story 작성 (SP-724)
Browse files Browse the repository at this point in the history
  • Loading branch information
SungHyun627 committed Sep 9, 2024
1 parent 93208a0 commit bef51ac
Showing 1 changed file with 16 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
import type { Meta, StoryObj } from '@storybook/react';
import { RecruitmentDetailModal } from '.';

const meta = {
component: RecruitmentDetailModal,
args: {
handleModal: () => {},
recruitmentId: 1,
},
} satisfies Meta<typeof RecruitmentDetailModal>;

export default meta;

type Story = StoryObj<typeof meta>;

export const Primary: Story = {};

0 comments on commit bef51ac

Please sign in to comment.