A React Component To Use Modal Like Bootstrap Intelligently
Bootstrap Modal is beautiful, it is still attractive to be used by React, Modal is displayed in the center of the browser window,it uses
margin-top
to make it center instead offlex
box (CSS3), so it is also fit for the browser of lower versions.
$ npm i -S @jayson991/react-modal
import React from 'react'
import Modal from '@jayson991/react-modal'
const App = () => {
const [showModal, setShowModal] = useState(false)
return (
<div className='App'>
<span onClick={() => setShowModal(true)}>Click Me!</span>
<Modal
title='Hello'
showModal={showModal}
onHideModal={() => setShowModal(false)}
>
<h1>Hello World!</h1>
</Modal>
</div>
)
}
export default App