├── .eslintignore ├── .eslintrc ├── .gitattributes ├── .gitignore ├── .npmrc ├── .prettierignore ├── .prettierrc ├── README.md ├── package.json ├── pnpm-lock.yaml ├── public ├── img │ ├── favicon.ico │ ├── logo192.png │ └── logo512.png ├── index.html ├── manifest.json └── robots.txt └── src ├── App.css ├── App.js ├── components ├── AppItem │ ├── index.css │ └── index.js ├── AppStore │ ├── index.css │ └── index.js └── TabItem │ ├── index.css │ └── index.js ├── index.js └── setupTests.js /.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | coverage 3 | build 4 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilReddy04/BasicAppStore/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilReddy04/BasicAppStore/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilReddy04/BasicAppStore/HEAD/.npmrc -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | coverage 3 | build 4 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilReddy04/BasicAppStore/HEAD/.prettierrc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilReddy04/BasicAppStore/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilReddy04/BasicAppStore/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /public/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilReddy04/BasicAppStore/HEAD/public/img/favicon.ico -------------------------------------------------------------------------------- /public/img/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilReddy04/BasicAppStore/HEAD/public/img/logo192.png -------------------------------------------------------------------------------- /public/img/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilReddy04/BasicAppStore/HEAD/public/img/logo512.png -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilReddy04/BasicAppStore/HEAD/public/index.html -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilReddy04/BasicAppStore/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilReddy04/BasicAppStore/HEAD/public/robots.txt -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilReddy04/BasicAppStore/HEAD/src/App.css -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilReddy04/BasicAppStore/HEAD/src/App.js -------------------------------------------------------------------------------- /src/components/AppItem/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilReddy04/BasicAppStore/HEAD/src/components/AppItem/index.css -------------------------------------------------------------------------------- /src/components/AppItem/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilReddy04/BasicAppStore/HEAD/src/components/AppItem/index.js -------------------------------------------------------------------------------- /src/components/AppStore/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilReddy04/BasicAppStore/HEAD/src/components/AppStore/index.css -------------------------------------------------------------------------------- /src/components/AppStore/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilReddy04/BasicAppStore/HEAD/src/components/AppStore/index.js -------------------------------------------------------------------------------- /src/components/TabItem/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilReddy04/BasicAppStore/HEAD/src/components/TabItem/index.css -------------------------------------------------------------------------------- /src/components/TabItem/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilReddy04/BasicAppStore/HEAD/src/components/TabItem/index.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilReddy04/BasicAppStore/HEAD/src/index.js -------------------------------------------------------------------------------- /src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilReddy04/BasicAppStore/HEAD/src/setupTests.js --------------------------------------------------------------------------------