summaryrefslogtreecommitdiff
path: root/src/lib/home/components/CategoryHomeId.jsx
blob: 71428e27d079e2401da57d4a590123542819b6b1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import { LazyLoadComponent } from 'react-lazy-load-image-component'
import useCategoryHomeId from '../hooks/useCategoryHomeId'
import CategoryHome from './CategoryHome'

const CategoryHomeId = () => {
  const { categoryHomeIds } = useCategoryHomeId()

  return (
    <div>
      <div className='font-semibold sm:text-h-lg mb-6 px-4 sm:px-0'>Kategori Pilihan</div>
      <div className='flex flex-col gap-y-10'>
        {categoryHomeIds.data?.map((id) => (
          <LazyLoadComponent key={id}>
            <CategoryHome id={id} />
          </LazyLoadComponent>
        ))}
      </div>
    </div>
  )
}

export default CategoryHomeId