29 lines
1020 B
React
29 lines
1020 B
React
import ProductCardStyleTwo from "../../Cards/ProductCardStyleTwo";
|
|
import DataIteration from "../../Helpers/DataIteration";
|
|
import SearchCom from "../../Helpers/SearchCom";
|
|
|
|
export default function QuestionsTab({ className, products }) {
|
|
return (
|
|
<>
|
|
<div className={`onsale-tab-wrapper w-full ${className || ""}`}>
|
|
<div className="main-container w-full">
|
|
<div className="filter-section w-full items-center sm:flex justify-between mb-6">
|
|
{/* filter-search */}
|
|
<div className="sm:w-1/2 w-full sm:pr-20 pr-0 mb-5 sm:mb-0">
|
|
<SearchCom />
|
|
</div>
|
|
|
|
</div>
|
|
<div className="content-section w-full-width">
|
|
<div className="grid lg:grid-cols-3 sm:grid-cols-2 grid-cols-1 gap-[30px]">
|
|
|
|
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</>
|
|
);
|
|
}
|