Skip to content

Commit

Permalink
Example.tsx 괄호 정리
Browse files Browse the repository at this point in the history
  • Loading branch information
Kimsj912 committed Jan 1, 2023
1 parent 485d6ff commit 3b16da8
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions src/components/Example/Example.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,7 @@ interface MyButtonProps {
}

const MyButton = ({ title }: MyButtonProps) => {
return (
<>
<StyledButton>{title}</StyledButton>
</>
);
return <StyledButton>{title}</StyledButton>;
};

export default MyButton;

0 comments on commit 3b16da8

Please sign in to comment.