Created
November 23, 2015 16:22
-
-
Save lamosty/3e714a64de181dcf56ec to your computer and use it in GitHub Desktop.
Header dumb component from the Lexi React WP theme: https://github.com/lamosty/lexi/blob/master/src/components/Header.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
import React, { Component } from 'react'; | |
export default class Header extends Component { | |
render() { | |
return ( | |
<div className="blog-header"> | |
<div className="container"> | |
<h1 className="blog-title">The Bootstrap Blog</h1> | |
<p className="lead blog-description">An example blog template built with Bootstrap.</p> | |
</div> | |
</div> | |
); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment