diff --git a/frontend/src/component/common/InputBox.tsx b/frontend/src/component/common/inputBox/InputBox.tsx similarity index 100% rename from frontend/src/component/common/InputBox.tsx rename to frontend/src/component/common/inputBox/InputBox.tsx diff --git a/frontend/src/pages/AddChannel.tsx b/frontend/src/pages/AddChannel.tsx index bd70f311..f78d744e 100644 --- a/frontend/src/pages/AddChannel.tsx +++ b/frontend/src/pages/AddChannel.tsx @@ -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 컴포넌트: 구분선 역할을 하는 컴포넌트입니다. diff --git a/frontend/src/pages/AddGuestPage.tsx b/frontend/src/pages/AddGuestPage.tsx index 0cc41334..a3d355ef 100644 --- a/frontend/src/pages/AddGuestPage.tsx +++ b/frontend/src/pages/AddGuestPage.tsx @@ -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 컴포넌트: 구분선 역할을 하는 컴포넌트입니다. diff --git a/frontend/src/pages/ChannelInfoPage.tsx b/frontend/src/pages/ChannelInfoPage.tsx index 0efec8bf..06a9186b 100644 --- a/frontend/src/pages/ChannelInfoPage.tsx +++ b/frontend/src/pages/ChannelInfoPage.tsx @@ -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 = () =>