chore: transfer repo
This commit is contained in:
11
components/products/ProductsPage.tsx
Normal file
11
components/products/ProductsPage.tsx
Normal file
@@ -0,0 +1,11 @@
|
||||
import { getRegularProducts } from "lib/shopify";
|
||||
import { ProductsPageContent } from "./client/ProductsPageContent";
|
||||
|
||||
export async function ProductsPage() {
|
||||
const products = await getRegularProducts({
|
||||
sortKey: 'CREATED_AT',
|
||||
reverse: true
|
||||
});
|
||||
|
||||
return <ProductsPageContent products={products} />;
|
||||
}
|
||||
Reference in New Issue
Block a user