UNPKG

@coinmeca/ui

Version:

This is a [Next.js](https://nextjs.org/) project bootstrapped with [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packages/create-next-app).

12 lines 520 B
"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