"use client";
import { Modal } from "../../../containers";
import { Contents } from "../../../components";
export default function Process(props) {
    const scroll = typeof props?.scroll === "boolean" ? props?.scroll : false;
    const handleClose = (e) => {
        if (typeof props?.onClose === "function")
            props?.onClose(e);
    };
    return <Modal {...{ ...props }} scroll={scroll} onClose={(e) => handleClose(e)} content={<Contents.Process {...props}/>} close/>;
}
//# sourceMappingURL=Process.jsx.map