1.0.4 • Published 5 years ago

portalo v1.0.4

Weekly downloads
3
License
MIT
Repository
github
Last release
5 years ago

What is react portal ?

Consider a case you want to attach a child component someplace other than current component.

Installation

npm i react-provided-portal

Interface

<Portal
  selector="test-container"
  didMount={parent => console.log('component mounted!')}
  willUnmount={() => console.log('component unmounted!')}
>
  <div>hello-world</div>
</Portal>

Examples

const TestComponent

1.0.4

5 years ago