diff --git a/ep62-redux-async/bower.json b/ep62-redux-async/bower.json new file mode 100644 index 0000000..24ffc14 --- /dev/null +++ b/ep62-redux-async/bower.json @@ -0,0 +1,21 @@ +{ + "name": "polymer-redux", + "authors": [ + "Rob Dodson " + ], + "description": "", + "main": "", + "license": "MIT", + "homepage": "", + "ignore": [ + "**/.*", + "node_modules", + "bower_components", + "test", + "tests" + ], + "dependencies": { + "paper-button": "PolymerElements/paper-button#^1.0.14", + "polymer-redux": "tur-nr/polymer-redux#^0.3.0" + } +} diff --git a/ep62-redux-async/index.html b/ep62-redux-async/index.html new file mode 100644 index 0000000..a19f12b --- /dev/null +++ b/ep62-redux-async/index.html @@ -0,0 +1,20 @@ + + + + + Polymer Redux Demo + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/ep62-redux-async/notification-bar.html b/ep62-redux-async/notification-bar.html new file mode 100644 index 0000000..dd113ba --- /dev/null +++ b/ep62-redux-async/notification-bar.html @@ -0,0 +1,30 @@ + + + + + + + + \ No newline at end of file diff --git a/ep62-redux-async/package.json b/ep62-redux-async/package.json new file mode 100644 index 0000000..3d7bedc --- /dev/null +++ b/ep62-redux-async/package.json @@ -0,0 +1,15 @@ +{ + "name": "polymer-redux", + "version": "1.0.0", + "description": "", + "main": "index.js", + "scripts": { + "test": "echo \"Error: no test specified\" && exit 1" + }, + "author": "", + "license": "ISC", + "dependencies": { + "redux": "^3.6.0", + "redux-thunk": "^2.1.0" + } +} diff --git a/ep62-redux-async/redux-store.html b/ep62-redux-async/redux-store.html new file mode 100644 index 0000000..04af150 --- /dev/null +++ b/ep62-redux-async/redux-store.html @@ -0,0 +1,43 @@ + + + \ No newline at end of file diff --git a/ep62-redux-async/sign-up-form.html b/ep62-redux-async/sign-up-form.html new file mode 100644 index 0000000..006f425 --- /dev/null +++ b/ep62-redux-async/sign-up-form.html @@ -0,0 +1,23 @@ + + + + + + + + \ No newline at end of file