-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: 마이페이지의 모든 페이지 라우터 설정 및 사이드 메뉴 적용 (#7)
- Loading branch information
1 parent
4d5c36e
commit ed07f9a
Showing
9 changed files
with
200 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
import React from 'react'; | ||
import Sidemenu from './SideMenu'; | ||
|
||
function ChatListPage() { | ||
return ( | ||
<> | ||
<Sidemenu /> | ||
</> | ||
); | ||
} | ||
|
||
export default ChatListPage; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
import React from 'react'; | ||
import Sidemenu from './SideMenu'; | ||
|
||
function LocationPage() { | ||
return ( | ||
<> | ||
<Sidemenu /> | ||
</> | ||
); | ||
} | ||
|
||
export default LocationPage; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
import React from 'react'; | ||
import Sidemenu from './SideMenu'; | ||
|
||
function MyPostsPage() { | ||
return ( | ||
<> | ||
<Sidemenu /> | ||
</> | ||
); | ||
} | ||
|
||
export default MyPostsPage; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
import React from 'react'; | ||
import Sidemenu from './SideMenu'; | ||
|
||
function NotificationPage() { | ||
return ( | ||
<> | ||
<Sidemenu /> | ||
</> | ||
); | ||
} | ||
|
||
export default NotificationPage; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
import React from 'react'; | ||
import Sidemenu from './SideMenu'; | ||
|
||
function OrderListPage() { | ||
return ( | ||
<> | ||
<Sidemenu /> | ||
</> | ||
); | ||
} | ||
|
||
export default OrderListPage; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
import React from 'react'; | ||
import Sidemenu from './SideMenu'; | ||
|
||
function RefundPage() { | ||
return ( | ||
<> | ||
<Sidemenu /> | ||
</> | ||
); | ||
} | ||
|
||
export default RefundPage; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
import React from 'react'; | ||
import Sidemenu from './SideMenu'; | ||
|
||
function WishListPage() { | ||
return ( | ||
<> | ||
<Sidemenu /> | ||
</> | ||
); | ||
} | ||
|
||
export default WishListPage; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters