diff --git a/frontend/src/components/common/AlarmContainer/AlarmContainer.stories.tsx b/frontend/src/components/AlarmContainer/AlarmContainer.stories.tsx similarity index 100% rename from frontend/src/components/common/AlarmContainer/AlarmContainer.stories.tsx rename to frontend/src/components/AlarmContainer/AlarmContainer.stories.tsx diff --git a/frontend/src/components/common/AlarmContainer/ContentAlarmList/index.tsx b/frontend/src/components/AlarmContainer/ContentAlarmList/index.tsx similarity index 100% rename from frontend/src/components/common/AlarmContainer/ContentAlarmList/index.tsx rename to frontend/src/components/AlarmContainer/ContentAlarmList/index.tsx diff --git a/frontend/src/components/common/AlarmContainer/ListStyle.ts b/frontend/src/components/AlarmContainer/ListStyle.ts similarity index 100% rename from frontend/src/components/common/AlarmContainer/ListStyle.ts rename to frontend/src/components/AlarmContainer/ListStyle.ts diff --git a/frontend/src/components/common/AlarmContainer/ReportAlarmList/index.tsx b/frontend/src/components/AlarmContainer/ReportAlarmList/index.tsx similarity index 100% rename from frontend/src/components/common/AlarmContainer/ReportAlarmList/index.tsx rename to frontend/src/components/AlarmContainer/ReportAlarmList/index.tsx diff --git a/frontend/src/components/common/AlarmContainer/index.tsx b/frontend/src/components/AlarmContainer/index.tsx similarity index 96% rename from frontend/src/components/common/AlarmContainer/index.tsx rename to frontend/src/components/AlarmContainer/index.tsx index 966738824..a64efe2d2 100644 --- a/frontend/src/components/common/AlarmContainer/index.tsx +++ b/frontend/src/components/AlarmContainer/index.tsx @@ -11,8 +11,8 @@ import ContentAlarmList from './ContentAlarmList'; import ReportAlarmList from './ReportAlarmList'; import * as S from './style'; -const CONTENT = 'content'; -const REPORT = 'report'; +const CONTENT = '알림'; +const REPORT = '신고'; interface AlarmContainerProps { style?: CSSProperties; diff --git a/frontend/src/components/common/AlarmContainer/style.ts b/frontend/src/components/AlarmContainer/style.ts similarity index 100% rename from frontend/src/components/common/AlarmContainer/style.ts rename to frontend/src/components/AlarmContainer/style.ts diff --git a/frontend/src/components/common/WideHeader/index.tsx b/frontend/src/components/common/WideHeader/index.tsx index c8bfaca5f..080bb6486 100644 --- a/frontend/src/components/common/WideHeader/index.tsx +++ b/frontend/src/components/common/WideHeader/index.tsx @@ -7,8 +7,8 @@ import { useReadLatestAlarm } from '@hooks/query/user/useReadLatestAlarm'; import { PATH } from '@constants/path'; +import AlarmContainer from '../../AlarmContainer'; import AlarmIconButton from '../ActiveContainer'; -import AlarmContainer from '../AlarmContainer'; import IconButton from '../IconButton'; import LogoButton from '../LogoButton'; import SearchBar from '../SearchBar'; diff --git a/frontend/src/pages/HomePage/index.tsx b/frontend/src/pages/HomePage/index.tsx index 75b447295..4da4abe54 100644 --- a/frontend/src/pages/HomePage/index.tsx +++ b/frontend/src/pages/HomePage/index.tsx @@ -7,8 +7,8 @@ import { useDrawer } from '@hooks/useDrawer'; import ErrorBoundary from '@pages/ErrorBoundary'; +import AlarmContainer from '@components/AlarmContainer'; import AddButton from '@components/common/AddButton'; -import AlarmContainer from '@components/common/AlarmContainer'; import AppInstallPrompt from '@components/common/AppInstallPrompt'; import Banner from '@components/common/Banner'; import Dashboard from '@components/common/Dashboard';