Skip to content

Commit

Permalink
chore: #53 - ButtonProps onClick 타입 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
eeseung committed Nov 7, 2023
1 parent 9c00dd7 commit 039b84f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/common/Button/Button.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ interface ButtonProps {
type?: 'button' | 'reset' | 'submit' | undefined
className?: string
style?: React.CSSProperties
onClick?: (_e?: React.MouseEvent<HTMLButtonElement>) => void
onClick?: (e?: React.MouseEvent<HTMLButtonElement>) => void
}

const Button = ({
Expand Down

0 comments on commit 039b84f

Please sign in to comment.