├── .babelrc ├── .eslintrc ├── .gitignore ├── .jshintrc ├── LICENSE ├── README.md ├── index.html ├── package.json ├── server.js ├── src ├── actions │ ├── .gitkeep │ └── FriendsActions.js ├── components │ ├── AddFriendInput.css │ ├── AddFriendInput.js │ ├── FriendList.css │ ├── FriendList.js │ ├── FriendListItem.css │ ├── FriendListItem.js │ └── index.js ├── constants │ └── ActionTypes.js ├── containers │ ├── App.js │ ├── FriendListApp.css │ └── FriendListApp.js ├── index.js ├── reducers │ ├── friendlist.js │ └── index.js └── store_enhancers │ └── devTools.js └── webpack.config.js /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "stage": 0 3 | } -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchapron/redux-friendlist-demo/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | npm-debug.log 3 | .DS_Store 4 | -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchapron/redux-friendlist-demo/HEAD/.jshintrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchapron/redux-friendlist-demo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchapron/redux-friendlist-demo/HEAD/README.md -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchapron/redux-friendlist-demo/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchapron/redux-friendlist-demo/HEAD/package.json -------------------------------------------------------------------------------- /server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchapron/redux-friendlist-demo/HEAD/server.js -------------------------------------------------------------------------------- /src/actions/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/actions/FriendsActions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchapron/redux-friendlist-demo/HEAD/src/actions/FriendsActions.js -------------------------------------------------------------------------------- /src/components/AddFriendInput.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchapron/redux-friendlist-demo/HEAD/src/components/AddFriendInput.css -------------------------------------------------------------------------------- /src/components/AddFriendInput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchapron/redux-friendlist-demo/HEAD/src/components/AddFriendInput.js -------------------------------------------------------------------------------- /src/components/FriendList.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchapron/redux-friendlist-demo/HEAD/src/components/FriendList.css -------------------------------------------------------------------------------- /src/components/FriendList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchapron/redux-friendlist-demo/HEAD/src/components/FriendList.js -------------------------------------------------------------------------------- /src/components/FriendListItem.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchapron/redux-friendlist-demo/HEAD/src/components/FriendListItem.css -------------------------------------------------------------------------------- /src/components/FriendListItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchapron/redux-friendlist-demo/HEAD/src/components/FriendListItem.js -------------------------------------------------------------------------------- /src/components/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchapron/redux-friendlist-demo/HEAD/src/components/index.js -------------------------------------------------------------------------------- /src/constants/ActionTypes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchapron/redux-friendlist-demo/HEAD/src/constants/ActionTypes.js -------------------------------------------------------------------------------- /src/containers/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchapron/redux-friendlist-demo/HEAD/src/containers/App.js -------------------------------------------------------------------------------- /src/containers/FriendListApp.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchapron/redux-friendlist-demo/HEAD/src/containers/FriendListApp.css -------------------------------------------------------------------------------- /src/containers/FriendListApp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchapron/redux-friendlist-demo/HEAD/src/containers/FriendListApp.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchapron/redux-friendlist-demo/HEAD/src/index.js -------------------------------------------------------------------------------- /src/reducers/friendlist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchapron/redux-friendlist-demo/HEAD/src/reducers/friendlist.js -------------------------------------------------------------------------------- /src/reducers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchapron/redux-friendlist-demo/HEAD/src/reducers/index.js -------------------------------------------------------------------------------- /src/store_enhancers/devTools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchapron/redux-friendlist-demo/HEAD/src/store_enhancers/devTools.js -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchapron/redux-friendlist-demo/HEAD/webpack.config.js --------------------------------------------------------------------------------