diff --git a/src/user/ui-profile/EmotionMonthlyLogs.tsx b/src/pageLayout/MypageLayout/EmotionMonthlyLogs.tsx similarity index 91% rename from src/user/ui-profile/EmotionMonthlyLogs.tsx rename to src/pageLayout/MypageLayout/EmotionMonthlyLogs.tsx index 18d4ada8..88983bbd 100644 --- a/src/user/ui-profile/EmotionMonthlyLogs.tsx +++ b/src/pageLayout/MypageLayout/EmotionMonthlyLogs.tsx @@ -1,8 +1,8 @@ import { useMonthlyEmotionLogs } from '@/hooks/useGetEmotion'; import { Emotion } from '@/types/emotion'; import { useEffect, useState } from 'react'; -import Calendar from './Calendar'; -import Chart from './Chart'; +import Calendar from '../../user/ui-calendar/Calendar'; +import Chart from '../../user/ui-chart/Chart'; interface EmotionMonthlyLogsProps { userId: number; diff --git a/src/pageLayout/MypageLayout/MyPageLayout.tsx b/src/pageLayout/MypageLayout/MyPageLayout.tsx index 12627ade..7971b8d2 100644 --- a/src/pageLayout/MypageLayout/MyPageLayout.tsx +++ b/src/pageLayout/MypageLayout/MyPageLayout.tsx @@ -1,7 +1,7 @@ import Header from '@/components/Header/Header'; import { useMeQuery } from '@/hooks/userQueryHooks'; import UserInfo from '@/types/user'; -import EmotionMonthlyLogs from '@/user/ui-profile/EmotionMonthlyLogs'; +import EmotionMonthlyLogs from '@/pageLayout/MypageLayout/EmotionMonthlyLogs'; import Profile from '@/user/ui-profile/Profile'; import { useRouter } from 'next/navigation'; diff --git a/src/user/ui-profile/Calendar.tsx b/src/user/ui-calendar/Calendar.tsx similarity index 100% rename from src/user/ui-profile/Calendar.tsx rename to src/user/ui-calendar/Calendar.tsx diff --git a/src/user/ui-profile/CalendarHeader.tsx b/src/user/ui-calendar/CalendarHeader.tsx similarity index 100% rename from src/user/ui-profile/CalendarHeader.tsx rename to src/user/ui-calendar/CalendarHeader.tsx diff --git a/src/user/ui-profile/Chart.tsx b/src/user/ui-chart/Chart.tsx similarity index 100% rename from src/user/ui-profile/Chart.tsx rename to src/user/ui-chart/Chart.tsx