Dash types

This commit is contained in:
CHIEFSOFT\ameye
2023-05-22 18:20:17 -04:00
parent c0e0b4aa42
commit 4286d90b36
3 changed files with 94 additions and 9 deletions
+25
View File
@@ -0,0 +1,25 @@
import React from "react";
import datas from "../../data/product_data.json";
import TopSellerTopBuyerSliderSection from "./TopSellerTopBuyerSliderSection";
import TrendingSection from "./TrendingSection";
import CommonHead from "../UserHeader/CommonHead";
export default function FamilyDash(props) {
console.log("PROPS IN FAMILY DASH->",props);
const trending = datas.datas;
return (
<div>
<div className="home-page-wrapper">
<CommonHead
commonHeadData={props.commonHeadData}
/>
<TrendingSection trending={trending} className="mb-10" />
<TopSellerTopBuyerSliderSection className="mb-10" />
</div>
</div>
);
}