Files
getgreen.uz/src/app/[locale]/category/page.tsx
2026-04-15 11:19:45 +00:00

15 lines
392 B
TypeScript

import React from "react";
import CategorySection from "../../../features/home/ui/category-section";
import { getCategory } from "@/shared/api/productCategorySvc";
const Page = async () => {
const { data: categoryData } = await getCategory();
return (
<div className={"section-wrapper"}>
<CategorySection categories={categoryData} />
</div>
);
};
export default Page;