├── .gitignore ├── LICENSE ├── README.md ├── package.json ├── src ├── components │ ├── index.ts │ └── stencil-generated │ │ └── index.ts └── index.ts └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/stencil-ds-react-template/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/stencil-ds-react-template/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/stencil-ds-react-template/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/stencil-ds-react-template/HEAD/package.json -------------------------------------------------------------------------------- /src/components/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./stencil-generated/index"; 2 | -------------------------------------------------------------------------------- /src/components/stencil-generated/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/stencil-ds-react-template/HEAD/src/components/stencil-generated/index.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./components"; 2 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/stencil-ds-react-template/HEAD/tsconfig.json --------------------------------------------------------------------------------