Last active
February 9, 2018 15:44
-
-
Save nahumzs/b79ec73ec620b7f19c7d8391f56f42e1 to your computer and use it in GitHub Desktop.
medium code embed
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
const Footer = (props) => { | |
const {children} = props; | |
return (<div className=”footer”>{children}</div>) | |
} |
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
<Footer> | |
<div>... Your Content ...</div> | |
</Footer> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment