import { getProducts } from "../data"; import EmptyProject from "../empty"; import FrontendWrapper from "../frontend-wrapper"; import ProductList from "./product-list"; const ListPage = async () => { const products = await getProducts(); if (products.length === 0) return ; return (
{products?.map((product, i) => (
))}
); }; export default ListPage;