Created
July 10, 2016 15:08
-
-
Save kadmil/65fe9270ce3f75bd6c0d0257b975f3b2 to your computer and use it in GitHub Desktop.
React like a pro
This file contains 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' | |
export default (props) => (<div>{props.myText}</div>) |
This file contains 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' | |
import First from './first.jsx' | |
export default (props) => ({[1,2,3].map((el) => (<First myText={el}>))}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
First
Second