diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/lib/home/components/CategoryDynamic.jsx | 9 | ||||
| -rw-r--r-- | src/pages/index.jsx | 2 |
2 files changed, 11 insertions, 0 deletions
diff --git a/src/lib/home/components/CategoryDynamic.jsx b/src/lib/home/components/CategoryDynamic.jsx new file mode 100644 index 00000000..59a1858b --- /dev/null +++ b/src/lib/home/components/CategoryDynamic.jsx @@ -0,0 +1,9 @@ +const CategoryDynamic = ({}) =>{ + return( + <div> + DISINI CATEGORY DYNAMIC + </div> + ) +}; + +export default CategoryDynamic;
\ No newline at end of file diff --git a/src/pages/index.jsx b/src/pages/index.jsx index 9675c355..149352c2 100644 --- a/src/pages/index.jsx +++ b/src/pages/index.jsx @@ -12,6 +12,7 @@ import PreferredBrandSkeleton from '@/lib/home/components/Skeleton/PreferredBran import PromotinProgram from '@/lib/promotinProgram/components/HomePage'; import PagePopupIformation from '~/modules/popup-information'; import CategoryPilihan from '../lib/home/components/CategoryPilihan'; +import CategoryDynamic from '../lib/home/components/CategoryDynamic'; import odooApi from '@/core/api/odooApi'; import { getIdFromSlug } from '@/core/utils/slug' @@ -120,6 +121,7 @@ export default function Home({categoryId}) { <FlashSale /> <PromotinProgram /> <CategoryPilihan categories={dataCategories}/> + <CategoryDynamic/> {/* <CategoryHomeId /> */} <BannerSection /> <CustomerReviews /> |
