Skip to content

Commit

Permalink
fix: bug fix (#139)
Browse files Browse the repository at this point in the history
* feat: λ©”μΈνŽ˜μ΄μ§€ 헀더 λ’€λ‘œκ°€κΈ° λ²„νŠΌ ν•¨μˆ˜ 클릭 λ²”μœ„ ν™•μž₯
  • Loading branch information
eunbae0 authored May 31, 2023
1 parent b109106 commit 855eaa3
Showing 1 changed file with 18 additions and 13 deletions.
31 changes: 18 additions & 13 deletions src/components/header/mainHeader/MainHeader.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,20 +10,25 @@ const MainHeader = () => {
};
return (
<S.Header>
<IconButton
iconName="Left"
width={12}
height={20}
<div
onClick={onClickBackButton}
/>
<Text
label="μ‹œλŒ€μƒ 메인"
as="div"
size="base"
weight={600}
color={'#2E74FF'}
style={{ marginLeft: '8px', paddingTop: '2px' }}
/>
style={{ display: 'flex', cursor: 'pointer' }}
>
<IconButton
iconName="Left"
width={12}
height={20}
// onClick={onClickBackButton}
/>
<Text
label="μ‹œλŒ€μƒ 메인"
as="div"
size="base"
weight={600}
color={'#2E74FF'}
style={{ marginLeft: '8px', paddingTop: '2px' }}
/>
</div>
</S.Header>
);
};
Expand Down

0 comments on commit 855eaa3

Please sign in to comment.