You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
pizza.krasnikov.pro/.history/components/UI/Modal_20220531163315.tsx

16 lines
462 B

import React from 'react';
const Modal = ({...props}) => {
return(
<div id="openModal" className={"modal"}>
<div className={"modal_dialog "+ " " + props.position}>
<div className={"modal_content " + " " + props.styles}>
<div className="modal_body">
{props.children}
</div>
</div>
</div>
</div>
)
}
export default Modal;