Skip to content

Instantly share code, notes, and snippets.

@mikeyamadeo
Created September 15, 2015 18:20
Show Gist options
  • Save mikeyamadeo/7980bbf8f36253d8b94b to your computer and use it in GitHub Desktop.
Save mikeyamadeo/7980bbf8f36253d8b94b to your computer and use it in GitHub Desktop.
const DynamicRenderer = React.createClass({
render () {
const component = this.props.condition
? SomeComponent
: SomeOtherComponent
// This will NOT work as expected
return <component />
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment