-
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.
added logic, thank page, modify page
- Loading branch information
Yiyuan Fang
authored and
Yiyuan Fang
committed
Jun 11, 2020
1 parent
8ce8eaa
commit 7c4659a
Showing
8 changed files
with
94 additions
and
71 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,11 @@ | ||
import React from 'react'; | ||
|
||
function Help (){ | ||
return ( | ||
<div style = {{display: 'flex', justifyContent: 'flex-end'}}> | ||
<h4> Help </h4> | ||
</div> | ||
) | ||
} | ||
|
||
export default Help |
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,22 @@ | ||
import React from 'react'; | ||
|
||
function Thank ({onRouteChange}) { | ||
return ( | ||
<div className = 'tc'> | ||
<h1> Thank you for using Divvy! </h1> | ||
<div> | ||
<input | ||
className = 'b ph3 pv2 input-reset ba b--black bg-transparent grow pointer f6 dib' | ||
value = 'click to modify' | ||
onClick = {onRouteChange} /> | ||
</div> <br></br> | ||
<div> | ||
<input | ||
className = 'b ph3 pv2 input-reset ba b--black bg-transparent grow pointer f6 dib' | ||
value = 'Fill out another form' | ||
onClick = {()=>{onRouteChange ('firsttime')}} /> | ||
</div> | ||
</div>) | ||
} | ||
|
||
export default Thank |
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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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