├── .git-blame-ignore-revs ├── .gitignore ├── App.jsx ├── LICENSE.md ├── README.md ├── Routes.jsx ├── assets ├── empty-state.svg ├── home-trophy.png └── index.js ├── components ├── ProductsCard.jsx ├── index.js └── providers │ ├── AppBridgeProvider.jsx │ ├── PolarisProvider.jsx │ ├── QueryProvider.jsx │ └── index.js ├── dev_embed.js ├── hooks ├── index.js ├── useAppQuery.js └── useAuthenticatedFetch.js ├── index.html ├── index.jsx ├── locales ├── de.json ├── en.json └── fr.json ├── package.json ├── pages ├── ExitIframe.jsx ├── NotFound.jsx ├── index.jsx └── pagename.jsx ├── shopify.web.toml ├── translation.yml ├── utils └── i18nUtils.js └── vite.config.js /.git-blame-ignore-revs: -------------------------------------------------------------------------------- 1 | ## 2022-06-21: Run prettier 2 | fa34bd26183ddc22701e2982288b33e6c8020f9e 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liquidshopier/Shopify-frontend-template-react/HEAD/.gitignore -------------------------------------------------------------------------------- /App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liquidshopier/Shopify-frontend-template-react/HEAD/App.jsx -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- 1 | license 1 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Routes.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liquidshopier/Shopify-frontend-template-react/HEAD/Routes.jsx -------------------------------------------------------------------------------- /assets/empty-state.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liquidshopier/Shopify-frontend-template-react/HEAD/assets/empty-state.svg -------------------------------------------------------------------------------- /assets/home-trophy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liquidshopier/Shopify-frontend-template-react/HEAD/assets/home-trophy.png -------------------------------------------------------------------------------- /assets/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liquidshopier/Shopify-frontend-template-react/HEAD/assets/index.js -------------------------------------------------------------------------------- /components/ProductsCard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liquidshopier/Shopify-frontend-template-react/HEAD/components/ProductsCard.jsx -------------------------------------------------------------------------------- /components/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liquidshopier/Shopify-frontend-template-react/HEAD/components/index.js -------------------------------------------------------------------------------- /components/providers/AppBridgeProvider.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liquidshopier/Shopify-frontend-template-react/HEAD/components/providers/AppBridgeProvider.jsx -------------------------------------------------------------------------------- /components/providers/PolarisProvider.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liquidshopier/Shopify-frontend-template-react/HEAD/components/providers/PolarisProvider.jsx -------------------------------------------------------------------------------- /components/providers/QueryProvider.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liquidshopier/Shopify-frontend-template-react/HEAD/components/providers/QueryProvider.jsx -------------------------------------------------------------------------------- /components/providers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liquidshopier/Shopify-frontend-template-react/HEAD/components/providers/index.js -------------------------------------------------------------------------------- /dev_embed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liquidshopier/Shopify-frontend-template-react/HEAD/dev_embed.js -------------------------------------------------------------------------------- /hooks/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liquidshopier/Shopify-frontend-template-react/HEAD/hooks/index.js -------------------------------------------------------------------------------- /hooks/useAppQuery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liquidshopier/Shopify-frontend-template-react/HEAD/hooks/useAppQuery.js -------------------------------------------------------------------------------- /hooks/useAuthenticatedFetch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liquidshopier/Shopify-frontend-template-react/HEAD/hooks/useAuthenticatedFetch.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liquidshopier/Shopify-frontend-template-react/HEAD/index.html -------------------------------------------------------------------------------- /index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liquidshopier/Shopify-frontend-template-react/HEAD/index.jsx -------------------------------------------------------------------------------- /locales/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liquidshopier/Shopify-frontend-template-react/HEAD/locales/de.json -------------------------------------------------------------------------------- /locales/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liquidshopier/Shopify-frontend-template-react/HEAD/locales/en.json -------------------------------------------------------------------------------- /locales/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liquidshopier/Shopify-frontend-template-react/HEAD/locales/fr.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liquidshopier/Shopify-frontend-template-react/HEAD/package.json -------------------------------------------------------------------------------- /pages/ExitIframe.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liquidshopier/Shopify-frontend-template-react/HEAD/pages/ExitIframe.jsx -------------------------------------------------------------------------------- /pages/NotFound.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liquidshopier/Shopify-frontend-template-react/HEAD/pages/NotFound.jsx -------------------------------------------------------------------------------- /pages/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liquidshopier/Shopify-frontend-template-react/HEAD/pages/index.jsx -------------------------------------------------------------------------------- /pages/pagename.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liquidshopier/Shopify-frontend-template-react/HEAD/pages/pagename.jsx -------------------------------------------------------------------------------- /shopify.web.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liquidshopier/Shopify-frontend-template-react/HEAD/shopify.web.toml -------------------------------------------------------------------------------- /translation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liquidshopier/Shopify-frontend-template-react/HEAD/translation.yml -------------------------------------------------------------------------------- /utils/i18nUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liquidshopier/Shopify-frontend-template-react/HEAD/utils/i18nUtils.js -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liquidshopier/Shopify-frontend-template-react/HEAD/vite.config.js --------------------------------------------------------------------------------