1.13.0 • Published 1 year ago

@jioponda/modalhrnet v1.13.0

Weekly downloads
-
License
ISC
Repository
github
Last release
1 year ago

Hrnet Modal

Install 💻 :

  • use : npm install @jioponda/modalhrnet

This is a REACT modal package for the HRnet application form including 🔽 :

  • the FormModal component
  • the displayModal function to display the latter
  • and finally a hideModal function to make it disappear (basically it is already linked to the cross of the modal)

Example of use 🔽 :

  • if you want to display this modal when clicking on an input or other you can proceed like this :

Start by creating a modal.js file then import your modal at the top of this file with the following line of code

import {Modal} from "@jioponda/modalhrnet"

you can also add to this line the functions of display and suppression of the modal like this 🔽:

import {Modal , displayModal , hideModal} from "@jioponda/modalhrnet"

once done add your component to your file, for example like this

Finally, if you want to make it visible use the onclick with the displayModal function and make it disappear with the hideModal function (again, the hideModal function is already linked on the cross of the modal)