├── .gitignore ├── README.md ├── index.html ├── package.json ├── public └── vite.svg ├── src ├── App.tsx ├── api │ └── github.ts ├── assets │ └── react.svg ├── components │ └── Card.tsx ├── hooks │ ├── types.ts │ └── useRepos.ts ├── index.css ├── main.tsx ├── queryClient.tsx ├── store │ └── favoriteRepos.ts └── vite-env.d.ts ├── tsconfig.json ├── tsconfig.node.json └── vite.config.ts /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgbenav/react-query-zustand/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgbenav/react-query-zustand/HEAD/README.md -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgbenav/react-query-zustand/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgbenav/react-query-zustand/HEAD/package.json -------------------------------------------------------------------------------- /public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgbenav/react-query-zustand/HEAD/public/vite.svg -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgbenav/react-query-zustand/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/api/github.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgbenav/react-query-zustand/HEAD/src/api/github.ts -------------------------------------------------------------------------------- /src/assets/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgbenav/react-query-zustand/HEAD/src/assets/react.svg -------------------------------------------------------------------------------- /src/components/Card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgbenav/react-query-zustand/HEAD/src/components/Card.tsx -------------------------------------------------------------------------------- /src/hooks/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgbenav/react-query-zustand/HEAD/src/hooks/types.ts -------------------------------------------------------------------------------- /src/hooks/useRepos.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgbenav/react-query-zustand/HEAD/src/hooks/useRepos.ts -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgbenav/react-query-zustand/HEAD/src/index.css -------------------------------------------------------------------------------- /src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgbenav/react-query-zustand/HEAD/src/main.tsx -------------------------------------------------------------------------------- /src/queryClient.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgbenav/react-query-zustand/HEAD/src/queryClient.tsx -------------------------------------------------------------------------------- /src/store/favoriteRepos.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgbenav/react-query-zustand/HEAD/src/store/favoriteRepos.ts -------------------------------------------------------------------------------- /src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgbenav/react-query-zustand/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgbenav/react-query-zustand/HEAD/tsconfig.node.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgbenav/react-query-zustand/HEAD/vite.config.ts --------------------------------------------------------------------------------