Skip to content

Instantly share code, notes, and snippets.

@lamosty
Created November 23, 2015 16:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lamosty/3e714a64de181dcf56ec to your computer and use it in GitHub Desktop.
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
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