Created
July 28, 2016 16:07
-
-
Save asolove/4f0b3b39eb1ba472702e400b6f508730 to your computer and use it in GitHub Desktop.
Revisions
-
asolove created this gist
Jul 28, 2016 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,7 @@ import {Component} from 'react' export default class Thingy extends Component { render() { const {a, b} = this.props; return <div>{a} <span>{b}</span></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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,3 @@ export default ({a, b}) => { <div>{a} <span>{b}</span></div> }