react-modal-view

A modal component


Keywords
react, react-component, react-modal, react-modal-view, react-modal-component, react modal, modal
License
MIT
Install
npm install react-modal-view@1.1.1

Documentation

react-modal-view

npm version

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

License

MIT