1.1.0 • Published 3 years ago

react-polyfill-portal v1.1.0

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

react-polyfill-portal

Polyfill for React new portal api

Support

>= react@0.14.9

Usage

import { createPortal } from 'react-polyfill-portal';

function Portal() {
  return createPortal(props.children, document.body);
}

function App() {
  return (
    <div>
      <Portal>
        <p>text</p>
      </Portal>
    </div>
  );
}

For more usage, see https://reactjs.org/docs/portals.html