Made ALL popups (modals) in the workflow UI movable by dragging the title

This commit is contained in:
frikky
2022-02-11 00:35:06 +01:00
parent 65418b39c4
commit 136b7337af
2 changed files with 58 additions and 5 deletions
@@ -0,0 +1,19 @@
import React, {useState, useEffect, useLayoutEffect} from 'react';
import Draggable from "react-draggable";
import {
Paper
} from "@material-ui/core";
const PaperComponent = (props) => {
return (
<Draggable
handle="#draggable-dialog-title"
cancel={'[class*="MuiDialogContent-root"]'}
>
<Paper {...props} />
</Draggable>
)
}
export default PaperComponent;