Skip to content

Commit

Permalink
#46 style: 코드변경
Browse files Browse the repository at this point in the history
  • Loading branch information
halmokme committed Apr 20, 2023
1 parent 88342da commit b01678f
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/components/ui/button.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ type ButtonProps = {
}


function Button({ children, disabled, size, type }: ButtonProps) {
export default function Button({ children, disabled, size, type }: ButtonProps) {
const sizeStyle = S.Size[size];
const typeStyle = type ? S.Type[type] : '';

Expand Down Expand Up @@ -90,5 +90,3 @@ const S = {
}
`
}

export default Button;

0 comments on commit b01678f

Please sign in to comment.