Last active
January 24, 2017 04:32
-
-
Save ryanjyost/c95afeb7be9338d326f81e2267de8188 to your computer and use it in GitHub Desktop.
rainy-day-fund/src/components/Landing.js
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
//src/components/Landing.js | |
import React from 'react'; | |
import { Link } from 'react-router'; | |
import { Grid, Jumbotron, Button } from 'react-bootstrap'; | |
const Landing = () => { | |
return ( | |
<Grid id="Landing" className="container-fluid"> | |
<Jumbotron id="landing-jumbotron"> | |
<h1>Welcome to the Rainy Day Fund App</h1> | |
<h6>This is a simple practice app and NOT financial advice. <strong>Illustrative purposes only!</strong></h6> | |
<Button className="nav-btn"> | |
<Link className="link" to="what-is-a-rainy-day-fund">I understand - take me to the app</Link> | |
</Button> | |
</Jumbotron> | |
</Grid> | |
); | |
} | |
export default Landing; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment