react popup window with options like resize, drag and more..
npm install --save reactjs-windows
import React, { Component } from 'react'
import ReactWindow from 'reactjs-windows'
import 'reactjs-windows/dist/index.css'
class Example extends Component {
render() {
return <ReactWindow title="Test Window">
<p>content..</p>
</ReactWindow>
}
}
MIT © YehudaKremer