JSPM

  • Created
  • Published
  • Downloads 14
  • Score
    100M100P100Q55081F
  • License MIT

Lightweight hooks ready dialog container

Package Exports

  • react-dialogs-container

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (react-dialogs-container) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

react-dialog-container

Library for manage dialogs inside application

Setup:

  • Place DialogsProvider over your application
  • Place DialogsContainer inside your application

Example to use

const Root = () => (
  <DialogsProvider>
    <App />
    <DialogsContainer />
  </DialogsProvider>
);