A rectangle selection tool

npm install --save react-rectangle-selection
import RectangleSelection from "react-rectangle-selection"
jsx
render() {
return(
onSelect={(e, coords) => {
this.setState({
origin: coords.origin,
target: coords.target
});
}}
style={{
backgroundColor: "rgba(0,0,255,0.4)",
borderColor: "blue"
}}
>
)
}
``