Skip to content

Instantly share code, notes, and snippets.

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