Created
January 2, 2017 14:28
-
-
Save casprwang/ec3622c5afc53d63d35d5cd4cfc7b53a to your computer and use it in GitHub Desktop.
stateless component
This file contains hidden or 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 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