0.1.2 • Published 3 years ago

mymodal-react v0.1.2

Weekly downloads
-
License
-
Repository
-
Last release
3 years ago

Project-modal-react

Description

React modal plugin

Installation

Run the command: npm i mymodal-react

How to use

1.import the plugin with:

import {Modal} from "mymodal-react"

2.import useState from react and use the following state:

import {useState} from 'react'
const [modal, setModal] = useState(false);
const toggleModal = () => {
  setModal(!modal);
  
}

3.Call the modal where you want to display it:

<Modal textModal ="your text">

paste the following code for the css:

.modal {
  align-items: center;
  display: flex;
  justify-content: center;
}
btn-modal {
  padding: 10px 20px;
  display: block;
  margin: 100px auto 0;
  font-size: 18px;
}

.modal-content {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  line-height: 1.4;
  background: #f1f1f1;
  padding: 14px 28px;
  border-radius: 3px;
  max-width: 600px;
  min-width: 300px;
}

.close-modal {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 5px 7px;
}