hotfix: shoppify hydrogen initialization with mock data

This commit is contained in:
Harivansh Rathi 2025-02-20 19:47:43 -05:00
parent 357979d0af
commit 4e59c6866d
15 changed files with 6510 additions and 115 deletions

7
src/pages/Products.tsx Normal file
View file

@ -0,0 +1,7 @@
import React from 'react';
import { ShopifyProductGrid } from '../components/ShopifyProductGrid';
import { mockProducts } from '../data/mockShopifyProducts';
export const ProductsPage: React.FC = () => {
return <ShopifyProductGrid products={mockProducts} />;
};