├── .coveralls.yml ├── .env ├── .eslintignore ├── .eslintrc ├── .github ├── dependabot.yml └── workflows │ ├── build.yaml │ ├── main.yml │ └── test.yaml ├── .gitignore ├── .prettierrc ├── .travis.yml ├── Dockerfile ├── LICENSE ├── README ├── README.md ├── README_CRA.md ├── e2e ├── app.test.tsx ├── global.d.ts ├── jest.config.js └── puppeteer_standalone.js ├── generate-react-cli.json ├── jest-puppeteer.config.js ├── package.json ├── public ├── favicon.ico ├── index.html ├── logo192.png ├── logo512.png ├── manifest.json └── robots.txt ├── src ├── App.scss ├── App.test.tsx ├── App.tsx ├── AppRouter.test.tsx ├── AppRouter.tsx ├── assets │ └── README ├── components │ └── README ├── features │ └── README ├── hooks │ └── README ├── index.scss ├── index.tsx ├── layout │ └── README ├── logo.svg ├── model │ └── README ├── pages │ └── README ├── react-app-env.d.ts ├── recoil │ ├── atoms │ │ └── README │ └── selectors │ │ └── README ├── redux │ └── store.ts ├── serviceWorker.ts ├── setupTests.ts └── widgets │ └── README ├── template.json ├── template ├── .env ├── .eslintignore ├── .eslintrc ├── .prettierrc ├── README.md ├── README_CRA.md ├── e2e │ ├── app.test.tsx │ ├── global.d.ts │ ├── jest.config.js │ └── puppeteer_standalone.js ├── generate-react-cli.json ├── gitignore ├── jest-puppeteer.config.js ├── public │ ├── favicon.ico │ ├── index.html │ ├── logo192.png │ ├── logo512.png │ ├── manifest.json │ └── robots.txt ├── src │ ├── App.scss │ ├── App.test.tsx │ ├── App.tsx │ ├── AppRouter.test.tsx │ ├── AppRouter.tsx │ ├── assets │ │ └── README │ ├── components │ │ └── README │ ├── features │ │ └── README │ ├── hooks │ │ └── README │ ├── index.scss │ ├── index.tsx │ ├── layout │ │ └── README │ ├── logo.svg │ ├── model │ │ └── README │ ├── pages │ │ └── README │ ├── react-app-env.d.ts │ ├── recoil │ │ ├── atoms │ │ │ └── README │ │ └── selectors │ │ │ └── README │ ├── redux │ │ └── store.ts │ ├── serviceWorker.ts │ ├── setupTests.ts │ └── widgets │ │ └── README ├── templates │ ├── component │ │ ├── TemplateName.scss │ │ ├── TemplateName.test.tsx │ │ └── TemplateName.tsx │ ├── d3 │ │ └── TemplateName.tsx │ ├── d3class │ │ └── TemplateName.tsx │ ├── d3widget │ │ ├── TemplateName.tsx │ │ └── types.ts │ ├── d3widgetcomponent │ │ ├── TemplateName.tsx │ │ └── TemplateNameHelper.tsx │ ├── materialui │ │ └── TemplateName.tsx │ ├── page │ │ ├── TemplateName.scss │ │ ├── TemplateName.test.tsx │ │ └── TemplateName.tsx │ ├── recoil │ │ ├── TemplateName.test.tsx │ │ └── TemplateName.tsx │ └── widget │ │ └── TemplateName.tsx └── tsconfig.json ├── templates ├── component │ ├── TemplateName.scss │ ├── TemplateName.test.tsx │ └── TemplateName.tsx ├── d3 │ └── TemplateName.tsx ├── d3class │ └── TemplateName.tsx ├── d3widget │ ├── TemplateName.tsx │ └── types.ts ├── d3widgetcomponent │ ├── TemplateName.tsx │ └── TemplateNameHelper.tsx ├── materialui │ └── TemplateName.tsx ├── page │ ├── TemplateName.scss │ ├── TemplateName.test.tsx │ └── TemplateName.tsx ├── recoil │ ├── TemplateName.test.tsx │ └── TemplateName.tsx └── widget │ └── TemplateName.tsx └── tsconfig.json /.coveralls.yml: -------------------------------------------------------------------------------- 1 | service_name: travis-pro 2 | repo_token: WSVsLgjUxwVtjzSEj4pJkm4NIXtEaH7Yo -------------------------------------------------------------------------------- /.env: -------------------------------------------------------------------------------- 1 | SKIP_PREFLIGHT_CHECK=true 2 | BROWSER=none 3 | -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliEladElrom/cra-template-must-have-libraries/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliEladElrom/cra-template-must-have-libraries/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliEladElrom/cra-template-must-have-libraries/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliEladElrom/cra-template-must-have-libraries/HEAD/.github/workflows/build.yaml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliEladElrom/cra-template-must-have-libraries/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.github/workflows/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliEladElrom/cra-template-must-have-libraries/HEAD/.github/workflows/test.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliEladElrom/cra-template-must-have-libraries/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliEladElrom/cra-template-must-have-libraries/HEAD/.prettierrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliEladElrom/cra-template-must-have-libraries/HEAD/.travis.yml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliEladElrom/cra-template-must-have-libraries/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliEladElrom/cra-template-must-have-libraries/HEAD/LICENSE -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliEladElrom/cra-template-must-have-libraries/HEAD/README -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliEladElrom/cra-template-must-have-libraries/HEAD/README.md -------------------------------------------------------------------------------- /README_CRA.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliEladElrom/cra-template-must-have-libraries/HEAD/README_CRA.md -------------------------------------------------------------------------------- /e2e/app.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliEladElrom/cra-template-must-have-libraries/HEAD/e2e/app.test.tsx -------------------------------------------------------------------------------- /e2e/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliEladElrom/cra-template-must-have-libraries/HEAD/e2e/global.d.ts -------------------------------------------------------------------------------- /e2e/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliEladElrom/cra-template-must-have-libraries/HEAD/e2e/jest.config.js -------------------------------------------------------------------------------- /e2e/puppeteer_standalone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliEladElrom/cra-template-must-have-libraries/HEAD/e2e/puppeteer_standalone.js -------------------------------------------------------------------------------- /generate-react-cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliEladElrom/cra-template-must-have-libraries/HEAD/generate-react-cli.json -------------------------------------------------------------------------------- /jest-puppeteer.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliEladElrom/cra-template-must-have-libraries/HEAD/jest-puppeteer.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliEladElrom/cra-template-must-have-libraries/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliEladElrom/cra-template-must-have-libraries/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliEladElrom/cra-template-must-have-libraries/HEAD/public/index.html -------------------------------------------------------------------------------- /public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliEladElrom/cra-template-must-have-libraries/HEAD/public/logo192.png -------------------------------------------------------------------------------- /public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliEladElrom/cra-template-must-have-libraries/HEAD/public/logo512.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliEladElrom/cra-template-must-have-libraries/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliEladElrom/cra-template-must-have-libraries/HEAD/public/robots.txt -------------------------------------------------------------------------------- /src/App.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliEladElrom/cra-template-must-have-libraries/HEAD/src/App.scss -------------------------------------------------------------------------------- /src/App.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliEladElrom/cra-template-must-have-libraries/HEAD/src/App.test.tsx -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliEladElrom/cra-template-must-have-libraries/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/AppRouter.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliEladElrom/cra-template-must-have-libraries/HEAD/src/AppRouter.test.tsx -------------------------------------------------------------------------------- /src/AppRouter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliEladElrom/cra-template-must-have-libraries/HEAD/src/AppRouter.tsx -------------------------------------------------------------------------------- /src/assets/README: -------------------------------------------------------------------------------- 1 | Break down your assets by names: about, home, etc. -------------------------------------------------------------------------------- /src/components/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliEladElrom/cra-template-must-have-libraries/HEAD/src/components/README -------------------------------------------------------------------------------- /src/features/README: -------------------------------------------------------------------------------- 1 | features components goes here. -------------------------------------------------------------------------------- /src/hooks/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliEladElrom/cra-template-must-have-libraries/HEAD/src/hooks/README -------------------------------------------------------------------------------- /src/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliEladElrom/cra-template-must-have-libraries/HEAD/src/index.scss -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliEladElrom/cra-template-must-have-libraries/HEAD/src/index.tsx -------------------------------------------------------------------------------- /src/layout/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliEladElrom/cra-template-must-have-libraries/HEAD/src/layout/README -------------------------------------------------------------------------------- /src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliEladElrom/cra-template-must-have-libraries/HEAD/src/logo.svg -------------------------------------------------------------------------------- /src/model/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliEladElrom/cra-template-must-have-libraries/HEAD/src/model/README -------------------------------------------------------------------------------- /src/pages/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliEladElrom/cra-template-must-have-libraries/HEAD/src/pages/README -------------------------------------------------------------------------------- /src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /src/recoil/atoms/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliEladElrom/cra-template-must-have-libraries/HEAD/src/recoil/atoms/README -------------------------------------------------------------------------------- /src/recoil/selectors/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliEladElrom/cra-template-must-have-libraries/HEAD/src/recoil/selectors/README -------------------------------------------------------------------------------- /src/redux/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliEladElrom/cra-template-must-have-libraries/HEAD/src/redux/store.ts -------------------------------------------------------------------------------- /src/serviceWorker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliEladElrom/cra-template-must-have-libraries/HEAD/src/serviceWorker.ts -------------------------------------------------------------------------------- /src/setupTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliEladElrom/cra-template-must-have-libraries/HEAD/src/setupTests.ts -------------------------------------------------------------------------------- /src/widgets/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliEladElrom/cra-template-must-have-libraries/HEAD/src/widgets/README -------------------------------------------------------------------------------- /template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliEladElrom/cra-template-must-have-libraries/HEAD/template.json -------------------------------------------------------------------------------- /template/.env: -------------------------------------------------------------------------------- 1 | SKIP_PREFLIGHT_CHECK=true 2 | BROWSER=none 3 | -------------------------------------------------------------------------------- /template/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliEladElrom/cra-template-must-have-libraries/HEAD/template/.eslintignore -------------------------------------------------------------------------------- /template/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliEladElrom/cra-template-must-have-libraries/HEAD/template/.eslintrc -------------------------------------------------------------------------------- /template/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliEladElrom/cra-template-must-have-libraries/HEAD/template/.prettierrc -------------------------------------------------------------------------------- /template/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliEladElrom/cra-template-must-have-libraries/HEAD/template/README.md -------------------------------------------------------------------------------- /template/README_CRA.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliEladElrom/cra-template-must-have-libraries/HEAD/template/README_CRA.md -------------------------------------------------------------------------------- /template/e2e/app.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliEladElrom/cra-template-must-have-libraries/HEAD/template/e2e/app.test.tsx -------------------------------------------------------------------------------- /template/e2e/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliEladElrom/cra-template-must-have-libraries/HEAD/template/e2e/global.d.ts -------------------------------------------------------------------------------- /template/e2e/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliEladElrom/cra-template-must-have-libraries/HEAD/template/e2e/jest.config.js -------------------------------------------------------------------------------- /template/e2e/puppeteer_standalone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliEladElrom/cra-template-must-have-libraries/HEAD/template/e2e/puppeteer_standalone.js -------------------------------------------------------------------------------- /template/generate-react-cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliEladElrom/cra-template-must-have-libraries/HEAD/template/generate-react-cli.json -------------------------------------------------------------------------------- /template/gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliEladElrom/cra-template-must-have-libraries/HEAD/template/gitignore -------------------------------------------------------------------------------- /template/jest-puppeteer.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliEladElrom/cra-template-must-have-libraries/HEAD/template/jest-puppeteer.config.js -------------------------------------------------------------------------------- /template/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliEladElrom/cra-template-must-have-libraries/HEAD/template/public/favicon.ico -------------------------------------------------------------------------------- /template/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliEladElrom/cra-template-must-have-libraries/HEAD/template/public/index.html -------------------------------------------------------------------------------- /template/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliEladElrom/cra-template-must-have-libraries/HEAD/template/public/logo192.png -------------------------------------------------------------------------------- /template/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliEladElrom/cra-template-must-have-libraries/HEAD/template/public/logo512.png -------------------------------------------------------------------------------- /template/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliEladElrom/cra-template-must-have-libraries/HEAD/template/public/manifest.json -------------------------------------------------------------------------------- /template/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliEladElrom/cra-template-must-have-libraries/HEAD/template/public/robots.txt -------------------------------------------------------------------------------- /template/src/App.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliEladElrom/cra-template-must-have-libraries/HEAD/template/src/App.scss -------------------------------------------------------------------------------- /template/src/App.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliEladElrom/cra-template-must-have-libraries/HEAD/template/src/App.test.tsx -------------------------------------------------------------------------------- /template/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliEladElrom/cra-template-must-have-libraries/HEAD/template/src/App.tsx -------------------------------------------------------------------------------- /template/src/AppRouter.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliEladElrom/cra-template-must-have-libraries/HEAD/template/src/AppRouter.test.tsx -------------------------------------------------------------------------------- /template/src/AppRouter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliEladElrom/cra-template-must-have-libraries/HEAD/template/src/AppRouter.tsx -------------------------------------------------------------------------------- /template/src/assets/README: -------------------------------------------------------------------------------- 1 | Break down your assets by names: about, home, etc. -------------------------------------------------------------------------------- /template/src/components/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliEladElrom/cra-template-must-have-libraries/HEAD/template/src/components/README -------------------------------------------------------------------------------- /template/src/features/README: -------------------------------------------------------------------------------- 1 | features components goes here. -------------------------------------------------------------------------------- /template/src/hooks/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliEladElrom/cra-template-must-have-libraries/HEAD/template/src/hooks/README -------------------------------------------------------------------------------- /template/src/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliEladElrom/cra-template-must-have-libraries/HEAD/template/src/index.scss -------------------------------------------------------------------------------- /template/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliEladElrom/cra-template-must-have-libraries/HEAD/template/src/index.tsx -------------------------------------------------------------------------------- /template/src/layout/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliEladElrom/cra-template-must-have-libraries/HEAD/template/src/layout/README -------------------------------------------------------------------------------- /template/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliEladElrom/cra-template-must-have-libraries/HEAD/template/src/logo.svg -------------------------------------------------------------------------------- /template/src/model/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliEladElrom/cra-template-must-have-libraries/HEAD/template/src/model/README -------------------------------------------------------------------------------- /template/src/pages/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliEladElrom/cra-template-must-have-libraries/HEAD/template/src/pages/README -------------------------------------------------------------------------------- /template/src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /template/src/recoil/atoms/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliEladElrom/cra-template-must-have-libraries/HEAD/template/src/recoil/atoms/README -------------------------------------------------------------------------------- /template/src/recoil/selectors/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliEladElrom/cra-template-must-have-libraries/HEAD/template/src/recoil/selectors/README -------------------------------------------------------------------------------- /template/src/redux/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliEladElrom/cra-template-must-have-libraries/HEAD/template/src/redux/store.ts -------------------------------------------------------------------------------- /template/src/serviceWorker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliEladElrom/cra-template-must-have-libraries/HEAD/template/src/serviceWorker.ts -------------------------------------------------------------------------------- /template/src/setupTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliEladElrom/cra-template-must-have-libraries/HEAD/template/src/setupTests.ts -------------------------------------------------------------------------------- /template/src/widgets/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliEladElrom/cra-template-must-have-libraries/HEAD/template/src/widgets/README -------------------------------------------------------------------------------- /template/templates/component/TemplateName.scss: -------------------------------------------------------------------------------- 1 | .TemplateName { 2 | } -------------------------------------------------------------------------------- /template/templates/component/TemplateName.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliEladElrom/cra-template-must-have-libraries/HEAD/template/templates/component/TemplateName.test.tsx -------------------------------------------------------------------------------- /template/templates/component/TemplateName.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliEladElrom/cra-template-must-have-libraries/HEAD/template/templates/component/TemplateName.tsx -------------------------------------------------------------------------------- /template/templates/d3/TemplateName.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliEladElrom/cra-template-must-have-libraries/HEAD/template/templates/d3/TemplateName.tsx -------------------------------------------------------------------------------- /template/templates/d3class/TemplateName.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliEladElrom/cra-template-must-have-libraries/HEAD/template/templates/d3class/TemplateName.tsx -------------------------------------------------------------------------------- /template/templates/d3widget/TemplateName.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliEladElrom/cra-template-must-have-libraries/HEAD/template/templates/d3widget/TemplateName.tsx -------------------------------------------------------------------------------- /template/templates/d3widget/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliEladElrom/cra-template-must-have-libraries/HEAD/template/templates/d3widget/types.ts -------------------------------------------------------------------------------- /template/templates/d3widgetcomponent/TemplateName.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliEladElrom/cra-template-must-have-libraries/HEAD/template/templates/d3widgetcomponent/TemplateName.tsx -------------------------------------------------------------------------------- /template/templates/d3widgetcomponent/TemplateNameHelper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliEladElrom/cra-template-must-have-libraries/HEAD/template/templates/d3widgetcomponent/TemplateNameHelper.tsx -------------------------------------------------------------------------------- /template/templates/materialui/TemplateName.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliEladElrom/cra-template-must-have-libraries/HEAD/template/templates/materialui/TemplateName.tsx -------------------------------------------------------------------------------- /template/templates/page/TemplateName.scss: -------------------------------------------------------------------------------- 1 | .TemplateName { 2 | } -------------------------------------------------------------------------------- /template/templates/page/TemplateName.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliEladElrom/cra-template-must-have-libraries/HEAD/template/templates/page/TemplateName.test.tsx -------------------------------------------------------------------------------- /template/templates/page/TemplateName.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliEladElrom/cra-template-must-have-libraries/HEAD/template/templates/page/TemplateName.tsx -------------------------------------------------------------------------------- /template/templates/recoil/TemplateName.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliEladElrom/cra-template-must-have-libraries/HEAD/template/templates/recoil/TemplateName.test.tsx -------------------------------------------------------------------------------- /template/templates/recoil/TemplateName.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliEladElrom/cra-template-must-have-libraries/HEAD/template/templates/recoil/TemplateName.tsx -------------------------------------------------------------------------------- /template/templates/widget/TemplateName.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliEladElrom/cra-template-must-have-libraries/HEAD/template/templates/widget/TemplateName.tsx -------------------------------------------------------------------------------- /template/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliEladElrom/cra-template-must-have-libraries/HEAD/template/tsconfig.json -------------------------------------------------------------------------------- /templates/component/TemplateName.scss: -------------------------------------------------------------------------------- 1 | .TemplateName { 2 | } -------------------------------------------------------------------------------- /templates/component/TemplateName.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliEladElrom/cra-template-must-have-libraries/HEAD/templates/component/TemplateName.test.tsx -------------------------------------------------------------------------------- /templates/component/TemplateName.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliEladElrom/cra-template-must-have-libraries/HEAD/templates/component/TemplateName.tsx -------------------------------------------------------------------------------- /templates/d3/TemplateName.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliEladElrom/cra-template-must-have-libraries/HEAD/templates/d3/TemplateName.tsx -------------------------------------------------------------------------------- /templates/d3class/TemplateName.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliEladElrom/cra-template-must-have-libraries/HEAD/templates/d3class/TemplateName.tsx -------------------------------------------------------------------------------- /templates/d3widget/TemplateName.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliEladElrom/cra-template-must-have-libraries/HEAD/templates/d3widget/TemplateName.tsx -------------------------------------------------------------------------------- /templates/d3widget/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliEladElrom/cra-template-must-have-libraries/HEAD/templates/d3widget/types.ts -------------------------------------------------------------------------------- /templates/d3widgetcomponent/TemplateName.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliEladElrom/cra-template-must-have-libraries/HEAD/templates/d3widgetcomponent/TemplateName.tsx -------------------------------------------------------------------------------- /templates/d3widgetcomponent/TemplateNameHelper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliEladElrom/cra-template-must-have-libraries/HEAD/templates/d3widgetcomponent/TemplateNameHelper.tsx -------------------------------------------------------------------------------- /templates/materialui/TemplateName.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliEladElrom/cra-template-must-have-libraries/HEAD/templates/materialui/TemplateName.tsx -------------------------------------------------------------------------------- /templates/page/TemplateName.scss: -------------------------------------------------------------------------------- 1 | .TemplateName { 2 | } -------------------------------------------------------------------------------- /templates/page/TemplateName.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliEladElrom/cra-template-must-have-libraries/HEAD/templates/page/TemplateName.test.tsx -------------------------------------------------------------------------------- /templates/page/TemplateName.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliEladElrom/cra-template-must-have-libraries/HEAD/templates/page/TemplateName.tsx -------------------------------------------------------------------------------- /templates/recoil/TemplateName.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliEladElrom/cra-template-must-have-libraries/HEAD/templates/recoil/TemplateName.test.tsx -------------------------------------------------------------------------------- /templates/recoil/TemplateName.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliEladElrom/cra-template-must-have-libraries/HEAD/templates/recoil/TemplateName.tsx -------------------------------------------------------------------------------- /templates/widget/TemplateName.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliEladElrom/cra-template-must-have-libraries/HEAD/templates/widget/TemplateName.tsx -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EliEladElrom/cra-template-must-have-libraries/HEAD/tsconfig.json --------------------------------------------------------------------------------