mirror of
https://github.com/harivansh-afk/GymSupps.git
synced 2026-04-15 04:03:29 +00:00
7 lines
265 B
TypeScript
7 lines
265 B
TypeScript
import React from 'react';
|
|
import { ShopifyProductGrid } from '../components/ShopifyProductGrid';
|
|
import { mockProducts } from '../data/mockShopifyProducts';
|
|
|
|
export const ProductsPage: React.FC = () => {
|
|
return <ShopifyProductGrid products={mockProducts} />;
|
|
};
|