Skip to content

Commit

Permalink
[FE][Fix][Refactor] : InputBox 디렉토리 이동
Browse files Browse the repository at this point in the history
  • Loading branch information
effozen committed Dec 4, 2024
1 parent 50e24d3 commit 0cb25f1
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
File renamed without changes.
2 changes: 1 addition & 1 deletion frontend/src/pages/AddChannel.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import { createChannel } from '@/api/channel.api';
import { Page } from '@/component/routebutton/enum';
import { loadLocalData } from '@/utils/common/manageLocalData';
import { AppConfig } from '@/lib/constants/commonConstants';
import { InputBox } from '../component/common/InputBox';
import { InputBox } from '../component/common/inputBox/InputBox.tsx';

/**
* Divider 컴포넌트: 구분선 역할을 하는 컴포넌트입니다.
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/pages/AddGuestPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import { addChannelReqEntity, guestEntity } from '@/api/dto/channel.dto';
import { addGuestChannel } from '@/api/channel.api';
import { Page } from '@/component/routebutton/enum';
import { ChannelContext } from '@/context/ChannelContext';
import { InputBox } from '../component/common/InputBox';
import { InputBox } from '../component/common/inputBox/InputBox.tsx';

/**
* Divider 컴포넌트: 구분선 역할을 하는 컴포넌트입니다.
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/pages/ChannelInfoPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import { ChannelContext } from '@/context/ChannelContext';
import { IUser, UserContext } from '@/context/UserContext';
import { guestEntity } from '@/api/dto/channel.dto';
import { ToastAlert } from '@/component/common/alert/ToastAlert';
import { InputBox } from '../component/common/InputBox';
import { InputBox } from '../component/common/inputBox/InputBox.tsx';

const Divider = () => <hr className="my-6 w-full border-gray-300" />;

Expand Down

0 comments on commit 0cb25f1

Please sign in to comment.