├── .babelrc ├── .eslintrc ├── .gitignore ├── .nvmrc ├── README.md ├── content └── todo.gif ├── package.json ├── src ├── actions │ ├── actionTypes.js │ └── todos.js ├── components │ ├── Footer.js │ ├── Header.js │ ├── TodoActions.js │ ├── TodoList.js │ ├── TodoRow.js │ └── TodoTextField.js ├── containers │ └── TodoApp.js ├── index.html ├── index.js ├── reducers │ ├── index.js │ └── todos.js └── store │ └── configureStore.js ├── webpack.config.js └── webpack.prod.config.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasbento/react-redux-todo/HEAD/.babelrc -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasbento/react-redux-todo/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | npm-debug.log 3 | .DS_Store 4 | dist 5 | .idea 6 | yarn.lock 7 | -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 4.4.7 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasbento/react-redux-todo/HEAD/README.md -------------------------------------------------------------------------------- /content/todo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasbento/react-redux-todo/HEAD/content/todo.gif -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasbento/react-redux-todo/HEAD/package.json -------------------------------------------------------------------------------- /src/actions/actionTypes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasbento/react-redux-todo/HEAD/src/actions/actionTypes.js -------------------------------------------------------------------------------- /src/actions/todos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasbento/react-redux-todo/HEAD/src/actions/todos.js -------------------------------------------------------------------------------- /src/components/Footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasbento/react-redux-todo/HEAD/src/components/Footer.js -------------------------------------------------------------------------------- /src/components/Header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasbento/react-redux-todo/HEAD/src/components/Header.js -------------------------------------------------------------------------------- /src/components/TodoActions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasbento/react-redux-todo/HEAD/src/components/TodoActions.js -------------------------------------------------------------------------------- /src/components/TodoList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasbento/react-redux-todo/HEAD/src/components/TodoList.js -------------------------------------------------------------------------------- /src/components/TodoRow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasbento/react-redux-todo/HEAD/src/components/TodoRow.js -------------------------------------------------------------------------------- /src/components/TodoTextField.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasbento/react-redux-todo/HEAD/src/components/TodoTextField.js -------------------------------------------------------------------------------- /src/containers/TodoApp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasbento/react-redux-todo/HEAD/src/containers/TodoApp.js -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasbento/react-redux-todo/HEAD/src/index.html -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasbento/react-redux-todo/HEAD/src/index.js -------------------------------------------------------------------------------- /src/reducers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasbento/react-redux-todo/HEAD/src/reducers/index.js -------------------------------------------------------------------------------- /src/reducers/todos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasbento/react-redux-todo/HEAD/src/reducers/todos.js -------------------------------------------------------------------------------- /src/store/configureStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasbento/react-redux-todo/HEAD/src/store/configureStore.js -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasbento/react-redux-todo/HEAD/webpack.config.js -------------------------------------------------------------------------------- /webpack.prod.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasbento/react-redux-todo/HEAD/webpack.prod.config.js --------------------------------------------------------------------------------