Skip to content

Commit

Permalink
chore: NormalToast 변수명 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
gxxrxn committed Oct 15, 2023
1 parent 12a8cf9 commit 901f59e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/stories/Base/Toast.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export default meta;

type Story = StoryObj<typeof ToastItem>;

const DefaultToast = () => {
const NormalToast = () => {
const toast = useToast();
const handleButtonClick = () =>
toast.show({ type: 'normal', message: '토스트 메시지에요' });
Expand Down Expand Up @@ -46,7 +46,7 @@ export const Default: Story = {
};

export const Normal: Story = {
render: DefaultToast,
render: NormalToast,
};

export const Success: Story = {
Expand Down

0 comments on commit 901f59e

Please sign in to comment.