-
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.
- Loading branch information
배채겸
authored and
배채겸
committed
Nov 16, 2020
1 parent
c581acc
commit 21acd02
Showing
7 changed files
with
190 additions
and
66 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,20 @@ | ||
import React from "react"; | ||
|
||
class Footer extends React.Component { | ||
constructor(props) { | ||
super(props) | ||
this.state = { | ||
|
||
} | ||
} | ||
|
||
render() { | ||
return ( | ||
<footer className="mypage_deleteinfo"> | ||
<button id="delete_myinfo">계정삭제</button> | ||
</footer> | ||
) | ||
} | ||
} | ||
|
||
export default Footer |
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,27 @@ | ||
import React from "react"; | ||
|
||
|
||
class MyToGoList extends React.Component { | ||
constructor(props) { | ||
super(props) | ||
this.state = { | ||
|
||
} | ||
} | ||
|
||
render() { | ||
return ( | ||
<section className="mypage_mylist"> | ||
<div className="mypage_mycontent_box"> | ||
<div className="mypage_mycontent_frame"> | ||
<div className="mypage_mycontent_map"></div> | ||
<div className="mypage_mycontent_content">내용이 들어갈 겁니다!</div> | ||
<div className="mypage_mycontent_tag">태그태그</div> | ||
</div> | ||
</div> | ||
</section> | ||
) | ||
} | ||
} | ||
|
||
export default MyToGoList |
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,32 @@ | ||
/* eslint-disable */ | ||
import React from "react"; | ||
import { Link, Route, Redirect } from "react-router-dom" | ||
|
||
class Nav extends React.Component { | ||
constructor(props) { | ||
super(props) | ||
this.state = { | ||
|
||
} | ||
} | ||
|
||
render() { | ||
return ( | ||
<div className="mypage_nav"> | ||
<div className="mypage_logo_box"> | ||
<Link to='/' className="mainpage_link"> | ||
<img className="Mypage_logo" src="http://penzim.synology.me/image/firstProject/icon/To-Go_List-logo-black.png" /> | ||
</Link> | ||
</div> | ||
<div className="Mypage_logout_btn_box"> | ||
<button className="Mypage_logout_btn"> | ||
로그아웃 | ||
</button> | ||
</div> | ||
|
||
</div> | ||
) | ||
} | ||
} | ||
|
||
export default Nav |
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,52 @@ | ||
import React from "react"; | ||
|
||
class UserInfo extends React.Component { | ||
constructor(props) { | ||
super(props) | ||
this.state = { | ||
|
||
} | ||
} | ||
|
||
render() { | ||
return ( | ||
<div className="mypage_userinfo"> | ||
<div className="mypage_userinfo_frame"> | ||
<h2>회원정보</h2> | ||
<div className="mypage_userinfo_content_box"> | ||
<div className="mypage_profile_photo"> | ||
<img id="mypage_profile_photo" src="http://penzim.synology.me/image/firstProject/icon/common_photo.png" /> | ||
</div> | ||
<div> | ||
<div className="mypage_profile"> | ||
<div className="mypage_profile_name"> | ||
<dl> | ||
<dt><span id="mypage_profile_name">이름</span></dt> | ||
<dd><span>이름이 올겁니다</span></dd> | ||
</dl> | ||
</div> | ||
<div className="mypage_profile_email"> | ||
<dl> | ||
<dt><span id="mypage_profile_email">이메일</span></dt> | ||
<dd><span>이메일이 올겁니다</span></dd> | ||
</dl> | ||
</div> | ||
<div className="mypage_profile_phone"> | ||
<dl> | ||
<dt><span id="mypage_profile_phone">휴대폰 번호</span></dt> | ||
<dd><span>휴대폰 번호가 올겁니다</span></dd> | ||
</dl> | ||
</div> | ||
</div> | ||
</div> | ||
<div className="mypage_profile_edit"> | ||
<button id="mypage_edit_btn">편집</button> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
) | ||
} | ||
} | ||
|
||
export default UserInfo |
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
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