Created
February 1, 2018 04:15
-
-
Save Mk-Etlinger/31868027f470526b18f7083b4c0d9686 to your computer and use it in GitHub Desktop.
React Fragment
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
| class Columns extends React.Component { | |
| render() { | |
| return ( | |
| <React.Fragment> | |
| <td>Hello</td> | |
| <td>World</td> | |
| </React.Fragment> | |
| ); | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment