-
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.
Merge pull request #10 from wkdewey/add_reactstrap_styling
Add reactstrap styling
- Loading branch information
Showing
11 changed files
with
335 additions
and
112 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,22 @@ | ||
|
||
import React from "react"; | ||
import { Jumbotron } from "reactstrap"; | ||
|
||
const Home = () => { | ||
console.log("in Home component") | ||
return( | ||
console.log("in Home component"); | ||
return ( | ||
<div> | ||
<header className="App-header"> | ||
<p>Welcome to American Ancestries.</p> | ||
</header> | ||
<Jumbotron className="App-header"> | ||
<h1 className="display-3">Welcome to American Ancestries!</h1> | ||
<h3>Explore the cultural diversity of the United States</h3> | ||
<p className="lead"> | ||
View different places and see how different ethnic origins are | ||
represented there, or view ancestry groups and where they are most | ||
strongly represented. If you have Census data you can also input new | ||
places with ancestry information. | ||
</p> | ||
</Jumbotron> | ||
</div> | ||
); | ||
} | ||
}; | ||
|
||
export default Home; | ||
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
Oops, something went wrong.