Skip to content

Commit

Permalink
chore : 헤더 import 수정 (#28)
Browse files Browse the repository at this point in the history
  • Loading branch information
cmlim0070 authored Oct 26, 2024
1 parent 532a6fc commit ea794f5
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions src/widgets/header/ui/Header.tsx
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
import { Container, Logo, Nav, NavItem } from './Header.styled'
import React from 'react';
import { Container, Logo, Nav, NavItem } from './Header.styled';

const Header = () => {
return (
<Container>
<Logo>
<Logo to="/">
<img src="/logo.svg" alt="logo" />
</Logo>
<Nav>
Expand All @@ -13,7 +14,7 @@ const Header = () => {
<NavItem>마이페이지</NavItem>
</Nav>
</Container>
)
}
);
};

export default Header
export default Header;

0 comments on commit ea794f5

Please sign in to comment.