├── .gitignore ├── README.md ├── package.json ├── public ├── favicon.ico ├── index.html └── manifest.json ├── src ├── App.js ├── TodoList.js ├── index.js └── store │ ├── actions.js │ ├── index.js │ ├── reducer.js │ └── sagas.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-content/youtube-codequinta-redux-saga/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-content/youtube-codequinta-redux-saga/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-content/youtube-codequinta-redux-saga/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-content/youtube-codequinta-redux-saga/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-content/youtube-codequinta-redux-saga/HEAD/public/index.html -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-content/youtube-codequinta-redux-saga/HEAD/public/manifest.json -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-content/youtube-codequinta-redux-saga/HEAD/src/App.js -------------------------------------------------------------------------------- /src/TodoList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-content/youtube-codequinta-redux-saga/HEAD/src/TodoList.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-content/youtube-codequinta-redux-saga/HEAD/src/index.js -------------------------------------------------------------------------------- /src/store/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-content/youtube-codequinta-redux-saga/HEAD/src/store/actions.js -------------------------------------------------------------------------------- /src/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-content/youtube-codequinta-redux-saga/HEAD/src/store/index.js -------------------------------------------------------------------------------- /src/store/reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-content/youtube-codequinta-redux-saga/HEAD/src/store/reducer.js -------------------------------------------------------------------------------- /src/store/sagas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-content/youtube-codequinta-redux-saga/HEAD/src/store/sagas.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-content/youtube-codequinta-redux-saga/HEAD/yarn.lock --------------------------------------------------------------------------------