Skip to content

Commit

Permalink
refactor(components): import 구문에 path-alias 사용
Browse files Browse the repository at this point in the history
  • Loading branch information
vi-wolhwa committed Jul 23, 2024
1 parent 290db3d commit 00bfc9a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions frontend/src/components/Header/Header.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { useState } from 'react';
import { Link } from 'react-router-dom';
import logoIcon from '../../assets/images/logo.png';
import newTemplateIcon from '../../assets/images/newTemplate.png';
import logoIcon from '@/assets/images/logo.png';
import newTemplateIcon from '@/assets/images/newTemplate.png';
import { Button } from '../Button';
import { Flex } from '../Flex';
import { Input } from '../Input';
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/components/Input/Input.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import searchIcon from '../../assets/images/search.png';
import searchIcon from '@/assets/images/search.png';
import * as S from './style';

export interface Props {
Expand Down

0 comments on commit 00bfc9a

Please sign in to comment.