├── .editorconfig ├── .github └── ISSUE_TEMPLATE.md ├── .gitignore ├── LICENSE ├── package.json ├── readme.md ├── src ├── actions │ ├── app.ts │ └── index.ts ├── assets │ └── icon │ │ ├── favicon.ico │ │ └── icon.png ├── components.d.ts ├── components │ └── my-app │ │ ├── my-app.css │ │ ├── my-app.spec.ts │ │ └── my-app.tsx ├── index.html ├── manifest.json ├── reducers │ ├── app.ts │ └── index.ts └── store │ └── index.ts ├── stencil.config.js └── tsconfig.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/stencil-redux-demo/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/stencil-redux-demo/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/stencil-redux-demo/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/stencil-redux-demo/HEAD/LICENSE -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/stencil-redux-demo/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/stencil-redux-demo/HEAD/readme.md -------------------------------------------------------------------------------- /src/actions/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/stencil-redux-demo/HEAD/src/actions/app.ts -------------------------------------------------------------------------------- /src/actions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/stencil-redux-demo/HEAD/src/actions/index.ts -------------------------------------------------------------------------------- /src/assets/icon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/stencil-redux-demo/HEAD/src/assets/icon/favicon.ico -------------------------------------------------------------------------------- /src/assets/icon/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/stencil-redux-demo/HEAD/src/assets/icon/icon.png -------------------------------------------------------------------------------- /src/components.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/stencil-redux-demo/HEAD/src/components.d.ts -------------------------------------------------------------------------------- /src/components/my-app/my-app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/stencil-redux-demo/HEAD/src/components/my-app/my-app.css -------------------------------------------------------------------------------- /src/components/my-app/my-app.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/stencil-redux-demo/HEAD/src/components/my-app/my-app.spec.ts -------------------------------------------------------------------------------- /src/components/my-app/my-app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/stencil-redux-demo/HEAD/src/components/my-app/my-app.tsx -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/stencil-redux-demo/HEAD/src/index.html -------------------------------------------------------------------------------- /src/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/stencil-redux-demo/HEAD/src/manifest.json -------------------------------------------------------------------------------- /src/reducers/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/stencil-redux-demo/HEAD/src/reducers/app.ts -------------------------------------------------------------------------------- /src/reducers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/stencil-redux-demo/HEAD/src/reducers/index.ts -------------------------------------------------------------------------------- /src/store/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/stencil-redux-demo/HEAD/src/store/index.ts -------------------------------------------------------------------------------- /stencil.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/stencil-redux-demo/HEAD/stencil.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/stencil-redux-demo/HEAD/tsconfig.json --------------------------------------------------------------------------------