Skip to content

Instantly share code, notes, and snippets.

@cbrannen9a
Created November 8, 2018 09:48
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save cbrannen9a/2d600125d6c0cffcc51c857015268c11 to your computer and use it in GitHub Desktop.
Example of render method for React Fragment 2
render() {
return (
<React.Fragment>
<ChildA />
<ChildB />
<ChildC />
</React.Fragment>
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment