import React from "react"; import type { Product } from "../types"; import { ProductCard } from "./ProductCard"; export function ProductGrid({ items, basePath = "" }: { items: Product[]; basePath?: string }) { return (
{items.map((p) => ( ))}
); }