Skip to content

Commit

Permalink
chore :: 필요없는 코드 정리
Browse files Browse the repository at this point in the history
  • Loading branch information
KANGYONGSU23 committed Nov 3, 2023
1 parent fca8793 commit cfe2758
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/common/Button/GhostBtn.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import React from "react";

interface PropsType {
children: React.ReactNode;
onClick?: (e: MouseEvent | React.MouseEvent) => void;
onClick?: () => void;
}

function GhostBtn({ children, onClick }: PropsType) {
Expand All @@ -18,4 +18,4 @@ function GhostBtn({ children, onClick }: PropsType) {
);
}

export default React.memo(GhostBtn);
export default GhostBtn;

0 comments on commit cfe2758

Please sign in to comment.