Skip to content

Instantly share code, notes, and snippets.

@mikeyamadeo
Last active September 15, 2015 17:13
Show Gist options
  • Save mikeyamadeo/3bdb4cac5dd778ba4597 to your computer and use it in GitHub Desktop.
Save mikeyamadeo/3bdb4cac5dd778ba4597 to your computer and use it in GitHub Desktop.
render () {
const { data, renderAs } = this.props
const types = {
listing: JobListing,
heading: JobHeading,
card: JobCard
}
const render = {
me: types[renderAs]
}
return (<render.me data={data} />)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment