21 lines
594 B
React
21 lines
594 B
React
import React from "react";
|
|
import HistoryAnalyticsCard from "../Cards/HistoryAnalyticsCard";
|
|
import SellHistoryMarketVisitorAnalytic from "../Home/SellHistoryMarketVisitorAnalytic";
|
|
import Layout from "../Partials/Layout";
|
|
import TrackingTable from "./TrackingTable";
|
|
import MarketHistorySection from "./MarketHistorySection";
|
|
|
|
export default function Tracking() {
|
|
return (
|
|
<>
|
|
<Layout>
|
|
<div className="history-wrapper w-full mb-10">
|
|
<div className="main-wrapper w-full">
|
|
<TrackingTable />
|
|
</div>
|
|
</div>
|
|
</Layout>
|
|
</>
|
|
);
|
|
}
|