A React Component used to overlay content.
npm install react-overlay0.1.7 will likely be the last release of react-overlay. Use react-overlays instead. It's awesome!
Install react-overlay with npm
``js`
npm install react-overlay --save
Require the Overlay component in your code
`js`
import { Overlay } from 'react-overlay';
// or
const { Overlay } = require('react-overlay');
// or
var Overlay = require('react-overlay').Overlay;
Use the overlay in your code
`js``
render() {
// ...
return (
I am attached to the body!
);
}