Skip to content

Commit

Permalink
style: Route.tsx import order 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
sangminlee98 committed Dec 7, 2023
1 parent 76fc85d commit 072523a
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/Routes.tsx
Original file line number Diff line number Diff line change
@@ -1,17 +1,16 @@
import { lazy } from 'react';
import { RouteObject } from 'react-router-dom';
import GlobalLayout from '@/pages/_layout';
import MyPage from './pages/Mypage';
import MyCommentsPage from './pages/Mypage/community/comments';

import MyLikesPage from './pages/Mypage/community/likes';
import MyPage from './pages/Mypage';
import MyWritePage from './pages/Mypage/community/write';
import MyHomePage from './pages/Mypage/home';
import MySelfPage from './pages/Mypage/trade/myself';
import MySavesPage from './pages/Mypage/trade/saves';
import MyScrapPage from './pages/Mypage/trade/scrap';


const MainPage = lazy(() => import('@/pages/Main'));
const LoginPage = lazy(() => import('@/pages/Login'));
const SignUpPage = lazy(() => import('@/pages/SignUp'));
Expand Down

0 comments on commit 072523a

Please sign in to comment.