├── .gitignore ├── src ├── index.html ├── models.ts ├── epics │ ├── index.ts │ └── todoEpics.ts ├── index.tsx ├── reducers │ ├── index.ts │ └── todosReducer.ts ├── store.ts ├── containers │ └── AppContainer.ts ├── actions │ └── todosActions.ts └── components │ └── App.tsx ├── tsconfig.json ├── package.json ├── webpack.config.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 |