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