offer interest list page added

This commit is contained in:
victorAnumudu
2023-06-14 15:22:54 +01:00
parent 83e6cef40a
commit 15adddb0ed
4 changed files with 202 additions and 128 deletions
+3 -11
View File
@@ -2,6 +2,7 @@ import React, { useState } from "react";
import { Link } from "react-router-dom";
import Layout from "../Partials/Layout";
import CommonHead from "../UserHeader/CommonHead";
import OffersInterestTable from './OffersInterestTable'
export default function OffersInterest(props) {
const [selectTab, setValue] = useState("today");
@@ -19,22 +20,13 @@ export default function OffersInterest(props) {
<div className="sm:flex justify-between items-center mb-6">
<div className="mb-5 sm:mb-0">
<h1 className="text-26 font-bold text-dark-gray dark:text-white">
<span
className={`${selectTab === "today" ? "block" : "hidden"}`}
>
Offer Interest
</span>
<span className={`${selectTab === "today" ? "block" : "hidden"}`}>Offer Interest</span>
</h1>
</div>
<div className="slider-btns flex space-x-4">
</div>
</div>
<div>
Blog Items Details
</div>
</div>
</div>
<OffersInterestTable offerInterestList={props.offerInterestList} />
</Layout>
);
}