modal-component-library-p14
v0.3.2
Published
Modal-component-library-p14 is a modal library
Readme
Presentation
Modal component library is a modal library. It's goal is to provide easy, flexible, configurable and accessible way to display modals for your application.
Authors
Screen
Installation
npm i modal-component-library-p14Usage
Import Modal component from "modal-component-library" where you want to use this
import React, { useState } from "react";
import ModalComponent from "modal-component-library-p14";
function App() {
const [ModalIsVisible, setModalIsVisible] = useState(false)
const closeModal = () => { setModalIsVisible(false) }
return (
<div className="App">
<ModalComponent text="your message" closeButton={closeModal} visible={ModalIsVisible} />
<button onClick={() => setModalIsVisible(true)}>Open Modal</button>
</div>
);
}Props
| Name | Type | Required | Description |
| --------------- | ------------- | -------- | ------------------------------------------------------------------------ |
| visible | boolean | true | Display the modal |
| closeButton | func | true | The function to close the modal |
| text | string | true | Message to show |
