@r.cochin/modal-react v0.1.5
@r.cochin/modal-react - A Simple React Modal Component Library
A library of React components created using create-react-app.
Installation
Run the following command:
npm install "@r.cochin/modal-react"
Usage
To use the Modal component in your React application, you can import it as shown below:
import Modal from '@r.cochin/modal-react';
Parameters
Here are the props you can pass to the Modal component:
isOpen(boolean): Determines if the modal is open or closed. Default isfalse.autoClose(boolean): Determines if the modal should automatically close after a certain duration. Default isfalse.autoCloseDuration(number): Specifies the duration (in milliseconds) after which the modal should automatically close. Default is3000(3 seconds).onClose(function): A callback function that is called when the modal is closed.color(string): Specifies the background color of the modal. Default is'white'.border(string): Specifies the border-radius of the modal. Default is'5px'.
Callbacks
onClose: This function is called when the modal is closed. Useful for performing actions like resetting form states or logging.