Skip to content

Commit

Permalink
chore : asset에서 logo를 불러오도록 설정
Browse files Browse the repository at this point in the history
  • Loading branch information
HelloWook committed Nov 1, 2024
1 parent e114397 commit b8ece13
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/widgets/header/ui/Header.tsx
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
import React from 'react';
import { Container, Logo, Nav, NavItem } from './Header.styled';
import LogoImage from '@/shared/assets/logo.svg';

const Header = () => {
return (
<Container>
<Logo>
<img src="/logo.svg" alt="logo" />
<img src={LogoImage} alt="logo" />
</Logo>
<Nav>
<NavItem></NavItem>
Expand Down

0 comments on commit b8ece13

Please sign in to comment.