Skip to content

Instantly share code, notes, and snippets.

@qvil
Created June 26, 2017 07:15
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 qvil/b917f0e40a7cb07434a42851f6254393 to your computer and use it in GitHub Desktop.
Save qvil/b917f0e40a7cb07434a42851f6254393 to your computer and use it in GitHub Desktop.
For react-tutorial
import React from 'react';
const Header = ({ text }) => {
return (
<div>
<h1>Header Props Text : {text}</h1>
</div>
);
};
export default Header;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment