Skip to content

Instantly share code, notes, and snippets.

@vibegui
Created March 20, 2016 14:08
Show Gist options
  • Save vibegui/1fe09563cfe4dbb04246 to your computer and use it in GitHub Desktop.
Save vibegui/1fe09563cfe4dbb04246 to your computer and use it in GitHub Desktop.
import React from 'react'
// https://github.com/gaearon/babel-plugin-react-transform/issues/57
export default function wrapFunctionalComponent (fc) {
return React.createClass({
displayName: fc.Name,
render() {
return fc.apply(null, this.props)
}
})
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment