react-modal-view
v1.1.1
Published
A modal component
Downloads
43
Maintainers
Readme
react-modal-view
A simple react modal component
Install
yarn add react-modal-view
Use
import Modal from 'react-modal-view'
import ReactDOM from 'react-dom'
import React, { Component } from 'react'
class TestComponent extends Component {
render () {
return (
<div>
<Modal visible={true}>
<h2>Hello from inside your modal</h2>
<p>This is a paragraph.</p>
</Modal>
</div>
)
}
}
ReactDOM.render(
<TestComponent />,
document.getElementById('root')
)
Styles
Uses styled-components 💅 for the base styling.
Development
yarn
yarn dev
Test
yarn test
Build
yarn
yarn build
Publish
npm login
npm version patch
git add -A
git push origin master
npm publish