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