A React component used to overlay content.
Deprecated Warning
0.1.7 will likely be the last release of react-overlay. Use react-overlays instead. It's awesome!
Getting Started
Install react-overlay with npm
npm install react-overlay --save
Require the Overlay component in your code
;// orconst Overlay = ;// orvar Overlay = Overlay;
Use the overlay in your code
{ // ... return <div> <Overlay> <span>I am attached to the body!</span> </Overlay> </div> ;}