Skip to content

Commit

Permalink
fix : diaryText 스토리북 코드 주석처리
Browse files Browse the repository at this point in the history
  • Loading branch information
jymaeng1234 authored Nov 5, 2024
1 parent ece2ec1 commit f91d1f4
Showing 1 changed file with 48 additions and 53 deletions.
101 changes: 48 additions & 53 deletions src/widgets/diary-text/ui/DiaryText.stories.tsx
Original file line number Diff line number Diff line change
@@ -1,57 +1,52 @@
import React from 'react';
import type { Meta, StoryObj } from '@storybook/react';
import DiaryText from './DiaryText';
// import React from 'react';
// import type { Meta, StoryObj } from '@storybook/react';
// import DiaryText from './DiaryText';

const meta: Meta<typeof DiaryText> = {
component: DiaryText,
title: 'Widgets/DiaryText',
tags: ['autodocs'],
docs: {
description: {
component: '이 컴포넌트는 일기의 제목, 공개 여부, 작성자, 날짜, 내용과 같은 정보를 표시합니다.'
}
},
argTypes: {
titleDate: {
control: 'text',
description : '일기 주제 날짜'
},
title: {
control: 'text',
description : '일기 제목'
},
author: {
control: 'text',
description : '작성자 이름'
},
updateDate: {
control: 'text',
description : '일기를 작성한 날짜'
},
diaryContent: {
control: 'text',
description : '일기 내용'
},
isPublic: {
control: 'boolean',
},
onVisibilityChange: { action: 'visibilityChanged' },
},
};
// const meta: Meta<typeof DiaryText> = {
// component: DiaryText,
// title: 'Widgets/DiaryText',
// tags: ['autodocs'],
// argTypes: {
// titleDate: {
// control: 'text',
// description : '일기 주제 날짜'
// },
// title: {
// control: 'text',
// description : '일기 제목'
// },
// author: {
// control: 'text',
// description : '작성자 이름'
// },
// updateDate: {
// control: 'text',
// description : '일기를 작성한 날짜'
// },
// diaryContent: {
// control: 'text',
// description : '일기 내용'
// },
// isPublic: {
// control: 'boolean',
// },
// onVisibilityChange: { action: 'visibilityChanged' },
// },
// };

export default meta;
// export default meta;

type Story = StoryObj<typeof DiaryText>;
// type Story = StoryObj<typeof DiaryText>;

export const Default: Story = {
args: {
titleDate: '2024-11-05',
title: '오늘 나의 일기',
author: '홍길동',
updateDate: '2024-11-05',
diaryContent: `오늘은끝나고 카페에 가야지.\n스타벅스 뱅쇼를 사먹어야지.\n신난다.\n오예\n몇시에 갈까`,
isPublic: true,
onVisibilityChange: (newVisibility: boolean) => {
},
},
};
// export const Default: Story = {
// args: {
// titleDate: '2024-11-05',
// title: '오늘 나의 일기',
// author: '홍길동',
// updateDate: '2024-11-05',
// diaryContent: `오늘은끝나고 카페에 가야지.\n스타벅스 뱅쇼를 사먹어야지.\n신난다.\n오예\n몇시에 갈까`,
// isPublic: true,
// onVisibilityChange: (newVisibility: boolean) => {
// },
// },
// };

0 comments on commit f91d1f4

Please sign in to comment.