Skip to content

Commit

Permalink
refactor: navbar classname 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
sikkzz committed Feb 21, 2025
1 parent 28e861e commit 46d55ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/common/Navbar/Navbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ interface NavbarProps extends PropsWithChildren {
}

const Navbar = ({ children, className }: NavbarProps) => {
return <div className={(classNames(styles.Navbar), className)}>{children}</div>;
return <div className={classNames(styles.Navbar, className)}>{children}</div>;
};

Navbar.LeftButton = ({
Expand Down

0 comments on commit 46d55ee

Please sign in to comment.