Files
users-myfit/src/components/ShopDetails/index.jsx
T
2023-01-30 16:46:25 -05:00

24 lines
795 B
React
Executable File

import React from "react";
import shopTrendingData from "../../data/marketplace_data.json";
import SellHistoryMarketVisitorAnalytic from "../Home/SellHistoryMarketVisitorAnalytic";
import Layout from "../Partials/Layout";
import ShopProductWidget from "./ShopProductWidget";
import ShopTrendingAction from "./ShopTrendingAction";
export default function ShopDetails() {
const shopTrending = shopTrendingData.data;
return (
<>
<Layout>
<div className="shop-details-wrapper w-full">
<div className="main-wrapper w-full">
<ShopProductWidget className="mb-8" />
<SellHistoryMarketVisitorAnalytic className="mb-8" />
<ShopTrendingAction trendingShop={shopTrending} />
</div>
</div>
</Layout>
</>
);
}