Skip to content

Instantly share code, notes, and snippets.

@Mk-Etlinger
Created February 1, 2018 04:15
Show Gist options
  • Select an option

  • Save Mk-Etlinger/31868027f470526b18f7083b4c0d9686 to your computer and use it in GitHub Desktop.

Select an option

Save Mk-Etlinger/31868027f470526b18f7083b4c0d9686 to your computer and use it in GitHub Desktop.
React Fragment
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