├── .eslintignore ├── .eslintrc ├── .gitignore ├── .stylelintrc.js ├── README.md ├── config └── config.js.sample ├── package.json ├── server └── apps.json ├── src ├── actions │ └── todoActions.js ├── client │ └── jsguild.js ├── components │ ├── todo-all │ │ └── todo-all.jsx │ ├── todo-index │ │ └── todo-index.jsx │ ├── todo-list │ │ └── todo-list.jsx │ └── todo-snippet │ │ └── todo-snippet.jsx ├── helpers │ └── html.js ├── reducers │ ├── todoReducer.js │ └── todosReducer.js ├── routes.jsx ├── server.js ├── static │ └── css │ │ └── semantic.min.css ├── store │ └── todoStore.js └── vendors │ └── semantic.min.js └── webpack ├── webpack.browser.config.js └── webpack.server.config.js /.eslintignore: -------------------------------------------------------------------------------- 1 | src/vendors 2 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitbbhayani/react-redux-todo/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitbbhayani/react-redux-todo/HEAD/.gitignore -------------------------------------------------------------------------------- /.stylelintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitbbhayani/react-redux-todo/HEAD/.stylelintrc.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitbbhayani/react-redux-todo/HEAD/README.md -------------------------------------------------------------------------------- /config/config.js.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitbbhayani/react-redux-todo/HEAD/config/config.js.sample -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitbbhayani/react-redux-todo/HEAD/package.json -------------------------------------------------------------------------------- /server/apps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitbbhayani/react-redux-todo/HEAD/server/apps.json -------------------------------------------------------------------------------- /src/actions/todoActions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitbbhayani/react-redux-todo/HEAD/src/actions/todoActions.js -------------------------------------------------------------------------------- /src/client/jsguild.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitbbhayani/react-redux-todo/HEAD/src/client/jsguild.js -------------------------------------------------------------------------------- /src/components/todo-all/todo-all.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitbbhayani/react-redux-todo/HEAD/src/components/todo-all/todo-all.jsx -------------------------------------------------------------------------------- /src/components/todo-index/todo-index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitbbhayani/react-redux-todo/HEAD/src/components/todo-index/todo-index.jsx -------------------------------------------------------------------------------- /src/components/todo-list/todo-list.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitbbhayani/react-redux-todo/HEAD/src/components/todo-list/todo-list.jsx -------------------------------------------------------------------------------- /src/components/todo-snippet/todo-snippet.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitbbhayani/react-redux-todo/HEAD/src/components/todo-snippet/todo-snippet.jsx -------------------------------------------------------------------------------- /src/helpers/html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitbbhayani/react-redux-todo/HEAD/src/helpers/html.js -------------------------------------------------------------------------------- /src/reducers/todoReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitbbhayani/react-redux-todo/HEAD/src/reducers/todoReducer.js -------------------------------------------------------------------------------- /src/reducers/todosReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitbbhayani/react-redux-todo/HEAD/src/reducers/todosReducer.js -------------------------------------------------------------------------------- /src/routes.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitbbhayani/react-redux-todo/HEAD/src/routes.jsx -------------------------------------------------------------------------------- /src/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitbbhayani/react-redux-todo/HEAD/src/server.js -------------------------------------------------------------------------------- /src/static/css/semantic.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitbbhayani/react-redux-todo/HEAD/src/static/css/semantic.min.css -------------------------------------------------------------------------------- /src/store/todoStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitbbhayani/react-redux-todo/HEAD/src/store/todoStore.js -------------------------------------------------------------------------------- /src/vendors/semantic.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitbbhayani/react-redux-todo/HEAD/src/vendors/semantic.min.js -------------------------------------------------------------------------------- /webpack/webpack.browser.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitbbhayani/react-redux-todo/HEAD/webpack/webpack.browser.config.js -------------------------------------------------------------------------------- /webpack/webpack.server.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitbbhayani/react-redux-todo/HEAD/webpack/webpack.server.config.js --------------------------------------------------------------------------------