├── .babelrc ├── .gitignore ├── actions └── TodoActions.js ├── components ├── Footer.js ├── Header.js ├── MainSection.js ├── TodoItem.js └── TodoTextInput.js ├── constants ├── ActionTypes.js └── TodoFilters.js ├── containers ├── App.js └── TodoApp.js ├── index.html ├── index.js ├── package.json ├── server.js ├── stores ├── index.js ├── todos.js └── user.js └── webpack.config.js /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "stage": 0 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | npm-debug.log 3 | .DS_Store 4 | -------------------------------------------------------------------------------- /actions/TodoActions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshthecoder/idom-redux-todomvc-app/HEAD/actions/TodoActions.js -------------------------------------------------------------------------------- /components/Footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshthecoder/idom-redux-todomvc-app/HEAD/components/Footer.js -------------------------------------------------------------------------------- /components/Header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshthecoder/idom-redux-todomvc-app/HEAD/components/Header.js -------------------------------------------------------------------------------- /components/MainSection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshthecoder/idom-redux-todomvc-app/HEAD/components/MainSection.js -------------------------------------------------------------------------------- /components/TodoItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshthecoder/idom-redux-todomvc-app/HEAD/components/TodoItem.js -------------------------------------------------------------------------------- /components/TodoTextInput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshthecoder/idom-redux-todomvc-app/HEAD/components/TodoTextInput.js -------------------------------------------------------------------------------- /constants/ActionTypes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshthecoder/idom-redux-todomvc-app/HEAD/constants/ActionTypes.js -------------------------------------------------------------------------------- /constants/TodoFilters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshthecoder/idom-redux-todomvc-app/HEAD/constants/TodoFilters.js -------------------------------------------------------------------------------- /containers/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshthecoder/idom-redux-todomvc-app/HEAD/containers/App.js -------------------------------------------------------------------------------- /containers/TodoApp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshthecoder/idom-redux-todomvc-app/HEAD/containers/TodoApp.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshthecoder/idom-redux-todomvc-app/HEAD/index.html -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshthecoder/idom-redux-todomvc-app/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshthecoder/idom-redux-todomvc-app/HEAD/package.json -------------------------------------------------------------------------------- /server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshthecoder/idom-redux-todomvc-app/HEAD/server.js -------------------------------------------------------------------------------- /stores/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshthecoder/idom-redux-todomvc-app/HEAD/stores/index.js -------------------------------------------------------------------------------- /stores/todos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshthecoder/idom-redux-todomvc-app/HEAD/stores/todos.js -------------------------------------------------------------------------------- /stores/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshthecoder/idom-redux-todomvc-app/HEAD/stores/user.js -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshthecoder/idom-redux-todomvc-app/HEAD/webpack.config.js --------------------------------------------------------------------------------