Skip to content

Commit

Permalink
fix: 타입 에러 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
LeeJeongHooo committed Jul 19, 2024
1 parent 415fa0c commit a0975e2
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 39 deletions.
35 changes: 0 additions & 35 deletions packages/core/sds/src/stories/Button.stories.tsx

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export const FirstFeatureOfFirstDomainBox = ({
}: PropsWithChildren<FirstFeatureOfFirstDomainBoxProps>) => {
return (
<div>
<Button appName="Container Box Button" onClick={onClick}>
<Button size="large" variant="primary" onClick={onClick}>
FirstDomainTestBox
</Button>
{displayText}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export const FirstFeatureOfFirstDomainTestButton = ({
const { testText, handleChangeTestText } = useFirstFeatureOfFirstDomainTestButton();

return (
<Button appName="sambad" onClick={handleChangeTestText} {...rest}>
<Button size="medium" variant="text" onClick={handleChangeTestText} {...rest}>
{children}
{testText}
</Button>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export const FirstFeatureOfSecondDomainTestBox = ({
}: PropsWithChildren<FirstFeatureOfSecondDomainBoxProps>) => {
return (
<div>
<Button appName="Container Box Button" onClick={onClick}>
<Button size="large" variant="text" onClick={onClick}>
SecondDomainTestBox
</Button>
{displayText}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export const FirstFeatureOfSecondDomainTestButton = ({
const { testText, handleChangeTestText } = useFirstFeatureOfFirstDomainTestButton();

return (
<Button appName="sambad" onClick={handleChangeTestText} {...rest}>
<Button variant="primary" size="large" onClick={handleChangeTestText} {...rest}>
{children}
{testText}
</Button>
Expand Down

0 comments on commit a0975e2

Please sign in to comment.