├── .gitattributes ├── LICENSE ├── README.md ├── package.json ├── template.json └── template ├── .env ├── README.md ├── gitignore ├── public ├── favicon.ico ├── index.html ├── logo192.png ├── logo512.png ├── manifest.json └── robots.txt ├── smw └── CH5Test.smw └── src ├── App.css ├── App.test.tsx ├── App.tsx ├── assets ├── avsp.png └── logo.svg ├── components ├── PushButton.module.scss └── PushButton.tsx ├── index.css ├── index.tsx ├── react-app-env.d.ts ├── serviceWorker.ts └── setupTests.ts /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avspltd/cra-template-ch5-typescript/HEAD/.gitattributes -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avspltd/cra-template-ch5-typescript/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avspltd/cra-template-ch5-typescript/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avspltd/cra-template-ch5-typescript/HEAD/package.json -------------------------------------------------------------------------------- /template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avspltd/cra-template-ch5-typescript/HEAD/template.json -------------------------------------------------------------------------------- /template/.env: -------------------------------------------------------------------------------- 1 | PUBLIC_URL="." 2 | -------------------------------------------------------------------------------- /template/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avspltd/cra-template-ch5-typescript/HEAD/template/README.md -------------------------------------------------------------------------------- /template/gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avspltd/cra-template-ch5-typescript/HEAD/template/gitignore -------------------------------------------------------------------------------- /template/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avspltd/cra-template-ch5-typescript/HEAD/template/public/favicon.ico -------------------------------------------------------------------------------- /template/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avspltd/cra-template-ch5-typescript/HEAD/template/public/index.html -------------------------------------------------------------------------------- /template/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avspltd/cra-template-ch5-typescript/HEAD/template/public/logo192.png -------------------------------------------------------------------------------- /template/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avspltd/cra-template-ch5-typescript/HEAD/template/public/logo512.png -------------------------------------------------------------------------------- /template/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avspltd/cra-template-ch5-typescript/HEAD/template/public/manifest.json -------------------------------------------------------------------------------- /template/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avspltd/cra-template-ch5-typescript/HEAD/template/public/robots.txt -------------------------------------------------------------------------------- /template/smw/CH5Test.smw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avspltd/cra-template-ch5-typescript/HEAD/template/smw/CH5Test.smw -------------------------------------------------------------------------------- /template/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avspltd/cra-template-ch5-typescript/HEAD/template/src/App.css -------------------------------------------------------------------------------- /template/src/App.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avspltd/cra-template-ch5-typescript/HEAD/template/src/App.test.tsx -------------------------------------------------------------------------------- /template/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avspltd/cra-template-ch5-typescript/HEAD/template/src/App.tsx -------------------------------------------------------------------------------- /template/src/assets/avsp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avspltd/cra-template-ch5-typescript/HEAD/template/src/assets/avsp.png -------------------------------------------------------------------------------- /template/src/assets/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avspltd/cra-template-ch5-typescript/HEAD/template/src/assets/logo.svg -------------------------------------------------------------------------------- /template/src/components/PushButton.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avspltd/cra-template-ch5-typescript/HEAD/template/src/components/PushButton.module.scss -------------------------------------------------------------------------------- /template/src/components/PushButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avspltd/cra-template-ch5-typescript/HEAD/template/src/components/PushButton.tsx -------------------------------------------------------------------------------- /template/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avspltd/cra-template-ch5-typescript/HEAD/template/src/index.css -------------------------------------------------------------------------------- /template/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avspltd/cra-template-ch5-typescript/HEAD/template/src/index.tsx -------------------------------------------------------------------------------- /template/src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /template/src/serviceWorker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avspltd/cra-template-ch5-typescript/HEAD/template/src/serviceWorker.ts -------------------------------------------------------------------------------- /template/src/setupTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avspltd/cra-template-ch5-typescript/HEAD/template/src/setupTests.ts --------------------------------------------------------------------------------