Skip to content

Instantly share code, notes, and snippets.

@casprwang
Created January 2, 2017 14:28
Show Gist options
  • Save casprwang/ec3622c5afc53d63d35d5cd4cfc7b53a to your computer and use it in GitHub Desktop.
Save casprwang/ec3622c5afc53d63d35d5cd4cfc7b53a to your computer and use it in GitHub Desktop.
stateless component
import React from 'react';
const Header2 = ({age}) =>
<h2 className="Header text-center">
{age}
</h2>
;
Header2.propTypes = {
message: React.PropTypes.string
};
export default Header2;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment