0.2.3 • Published 4 years ago

fake-notifications v0.2.3

Weekly downloads
-
License
MIT
Repository
github
Last release
4 years ago

npm version npm Minified & Gzipped size

fake-notifications

A easy to use and highly configured component to show notifications of fake payments.

Demo

##Features

Getting Started

npm install fake-notifications

Usage

Import fake-notifications

import FakeNotifications from 'fake-notifications'

Add CSS File

import 'fake-notifications/dist/FakeNotifications/fakenotifications.css'

Render fake-notifications at the top of your application so that it does not conflict with other absolutely positioned DOM elements.

const App = () => {
  return (
    <div className="app-container">
      <FakeNotifications />
      <Application />
    </div>
  )
};