empty data component

This commit is contained in:
nabijonovdavronbek619@gmail.com
2025-12-11 18:54:27 +05:00
parent cf26b778fc
commit 6e41a836a7
6 changed files with 101 additions and 16 deletions

View File

@@ -1,9 +1,11 @@
import React from 'react'
import dynamic from 'next/dynamic'
const Products = dynamic(() => import('@/components/productsPage/products'));
export default function Page() {
return (
<div>
<div className='min-h-screen bg-white'>
<Products/>
</div>
)
}