Skip to content

Commit

Permalink
docs: <ReviewQuestion /> 컴포넌트의 스토리 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
abiriadev committed May 13, 2024
1 parent 6f4a050 commit e3c92e4
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions src/Components/ReviewQuestion/ReviewQuestion.stories.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
import type { Meta, StoryObj } from '@storybook/react';
import { ReviewQuestion } from './ReviewQuestion';

const meta = {
component: ReviewQuestion,
} satisfies Meta<typeof ReviewQuestion>;

export default meta;
type Story = StoryObj<typeof meta>;

export const Primary: Story = {
args: {
title: '평가 문항',
contents: ['매우 만족', '매우 불만족'],
},
};

0 comments on commit e3c92e4

Please sign in to comment.