From 0cb25f10be15ffcb0e60939903b5438ae411a6b0 Mon Sep 17 00:00:00 2001 From: effozen Date: Thu, 5 Dec 2024 00:19:13 +0900 Subject: [PATCH] =?UTF-8?q?[FE][Fix][Refactor]=20:=20InputBox=20=EB=94=94?= =?UTF-8?q?=EB=A0=89=ED=86=A0=EB=A6=AC=20=EC=9D=B4=EB=8F=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/src/component/common/{ => inputBox}/InputBox.tsx | 0 frontend/src/pages/AddChannel.tsx | 2 +- frontend/src/pages/AddGuestPage.tsx | 2 +- frontend/src/pages/ChannelInfoPage.tsx | 2 +- 4 files changed, 3 insertions(+), 3 deletions(-) rename frontend/src/component/common/{ => inputBox}/InputBox.tsx (100%) 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 = () =>
;