1.0.1 • Published 6 years ago

react-catchymodals v1.0.1

Weekly downloads
5
License
MIT
Repository
github
Last release
6 years ago

Alt text

React CatchyModals

Travis npm package Coveralls

React CatchyModals is a collection of delightful and catchy modals that can be customized to fit into any project.

The modals have a variety of transitions and styles suited to any in-application notification purpose.

Demo

View Demo GIF

Installation

npm install --save react-catchymodals   # using NPM
yarn add react-catchymodals             # using yarn

How to Use

import React, {Component} from 'react';
import { Modal } from 'react-catchymodals';

class App extends Component {
  render() {
    return (
      <div className="App">
        <Modal
          className="rec-modal"
          title="A Rectangular Modal"
          children="Your text"
      </div>
    );
  }
}

Contribute

Please read CONTRIBUTING.md and submit a pull request to me.