Skip to content

Commit

Permalink
docs: 스토리북 설명 및 타이틀 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
hamo-o committed Sep 26, 2024
1 parent c9ce56f commit ced56b3
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions packages/wow-ui/src/components/Toast/Toast.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ const meta: Meta<typeof Toast> = {
control: false,
},
toastDuration: {
description: "Toast가 보여지는 시간을 나타냅니다.",
description: "Toast가 보여지는 시간(ms)을 나타냅니다.",
control: { type: "number" },
},
style: {
Expand Down Expand Up @@ -106,7 +106,7 @@ export const WithTrigger = () => {
);
};

export const Close = () => {
export const WithCloseIcon = () => {
const { toast } = useToast();
useEffect(() => {
toast({
Expand All @@ -117,7 +117,7 @@ export const Close = () => {
}, []);
};

export const Arrow = () => {
export const WithArrowIcon = () => {
const { toast } = useToast();
useEffect(() => {
toast({
Expand All @@ -128,7 +128,7 @@ export const Arrow = () => {
}, []);
};

export const Icon = () => {
export const WithLeftIcon = () => {
const { toast } = useToast();
useEffect(() => {
toast({
Expand All @@ -139,7 +139,7 @@ export const Icon = () => {
}, []);
};

export const IconArrow = () => {
export const WithLeftAndArrowIcons = () => {
const { toast } = useToast();
useEffect(() => {
toast({
Expand Down

0 comments on commit ced56b3

Please sign in to comment.