Variable: Modal
constModal:FC<ModalProps>
Defined in: components/Modal/index.tsx:46
Component
Modal
Description
A modal dialog component that can be rendered in a portal.
Param
The component props.
Returns
The rendered Modal component.
Example
<Modal title="My Modal" visible={true} closeModal={() => {}}>
<p>This is the modal content.</p>
</Modal>