simple-react-modal-wj

0.2.1 • Public • Published

simple-react-modal-wj

A Simple modal

NPM JavaScript Style Guide

Install

npm install --save simple-react-modal-wj

Usage Example

import { Modal } from 'simple-react-modal-wj'

function EnclosingFunction() {
  const [openModal, setOpenModal] = useState(false)
  return (
    <button onclick={setOpenModal}>Click to open modal 😉</button>
    <Modal
      isOpen={openModal}
      onClose={() => {
        setOpenModal(false)
        return true
      }}
    />
  )
}

Options

You can use those props to add specific content through the modal :

 title={here you can add a title}
subTitle={here you can add a subtitle near the title}
content={here yu can add your main content}

License

MIT © WillemJou

Readme

Keywords

Package Sidebar

Install

npm i simple-react-modal-wj

Weekly Downloads

1

Version

0.2.1

License

none

Unpacked Size

5.18 kB

Total Files

5

Last publish

Collaborators

  • willemj