├── .babelrc ├── .editorconfig ├── .eslintignore ├── .eslintrc ├── .gitignore ├── .npmignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── demo ├── demo.js ├── index.html └── webpack.config.js ├── package.json ├── src ├── actions.js ├── components │ ├── Notif.js │ ├── NotifTransition.js │ └── Notifs.js ├── index.js ├── reducer.js └── styles.css └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indexiatech/re-notif/HEAD/.babelrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indexiatech/re-notif/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indexiatech/re-notif/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indexiatech/re-notif/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indexiatech/re-notif/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indexiatech/re-notif/HEAD/.npmignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indexiatech/re-notif/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indexiatech/re-notif/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indexiatech/re-notif/HEAD/README.md -------------------------------------------------------------------------------- /demo/demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indexiatech/re-notif/HEAD/demo/demo.js -------------------------------------------------------------------------------- /demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indexiatech/re-notif/HEAD/demo/index.html -------------------------------------------------------------------------------- /demo/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indexiatech/re-notif/HEAD/demo/webpack.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indexiatech/re-notif/HEAD/package.json -------------------------------------------------------------------------------- /src/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indexiatech/re-notif/HEAD/src/actions.js -------------------------------------------------------------------------------- /src/components/Notif.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indexiatech/re-notif/HEAD/src/components/Notif.js -------------------------------------------------------------------------------- /src/components/NotifTransition.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indexiatech/re-notif/HEAD/src/components/NotifTransition.js -------------------------------------------------------------------------------- /src/components/Notifs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indexiatech/re-notif/HEAD/src/components/Notifs.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indexiatech/re-notif/HEAD/src/index.js -------------------------------------------------------------------------------- /src/reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indexiatech/re-notif/HEAD/src/reducer.js -------------------------------------------------------------------------------- /src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indexiatech/re-notif/HEAD/src/styles.css -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indexiatech/re-notif/HEAD/yarn.lock --------------------------------------------------------------------------------