Skip to content

Instantly share code, notes, and snippets.

@dbilgili
Last active December 9, 2018 21:15
  • 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 dbilgili/6cc6e497238939e98633f58565a052bd to your computer and use it in GitHub Desktop.
// vim: syntax=JSX
import React from 'react'
import ReactDOM from 'react-dom'
class Controller extends React.Component{
render(){
const { children } = this.props
const inputChildren = React.Children.map(children, child => {
if(child.type.displayName === "Select"){
return React.cloneElement(child)
}
else{
return ReactDOM.createPortal(React.cloneElement(child), document.body)
}
})
return inputChildren
}
}
export default Controller
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment