Skip to content

Commit

Permalink
style: children이 없는 태그 스스로 닫도록 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
jinhokim98 committed Jul 24, 2024
1 parent a60f39e commit 3d12c84
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion HDesign/src/components/TopNav/TopNav.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ const TopNav = ({navType}: TopNavProps) => {
case 'home':
return (
<div css={topNavStyle}>
<Switch value={nav} values={['홈', '관리']} onChange={handleRoute}></Switch>
<Switch value={nav} values={['홈', '관리']} onChange={handleRoute} />
</div>
);

Expand Down

0 comments on commit 3d12c84

Please sign in to comment.