-
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.
* Add 'You' in request history. * Add home page content to make it complete. * Make error message more informative. * Modify README to make it clearer. * Add more. * Remove YOU as it's not always the current user.
- Loading branch information
1 parent
686b481
commit c1b3a85
Showing
6 changed files
with
76 additions
and
27 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
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 |
---|---|---|
@@ -1,5 +1,25 @@ | ||
import React from 'react' | ||
const Home = () => ( | ||
<></> | ||
) | ||
import {Container} from "react-bootstrap"; | ||
const Home = (props) => { | ||
|
||
return ( | ||
<Container> | ||
<br/> | ||
<h1>Welcome to Zenmo!</h1> | ||
<br/> | ||
<h4>This is a money management and payment tool with which you can:</h4> | ||
<ul> | ||
<li>deposit and withdraw money</li> | ||
<li>make immediate money transfer</li> | ||
<li>handle money requests</li> | ||
<li>view transaction feed</li> | ||
</ul> | ||
<h4>You'll love it : )</h4> | ||
<br/> | ||
{props?.userData?.token ? | ||
<h4><em>Click on the Nav bar items to begin.</em></h4> : <h4><em>Please log in first!</em></h4> | ||
} | ||
</Container> | ||
) | ||
}; | ||
export default Home |
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