diff --git a/src/app/properties/page.tsx b/src/app/properties/page.tsx index 8636742..5e488e1 100644 --- a/src/app/properties/page.tsx +++ b/src/app/properties/page.tsx @@ -9,6 +9,15 @@ import { useState } from "react"; export default function PropertiesPage() { const [search, setSearch] = useState(""); + const [priceSort, setPriceSort] = useState(""); + + const filters = [ + { + label: "Price Rating", options: ["None", "Lowest to Highest", "Highest to Lowest"], + selected: priceSort, + onChange: (value: string) => setPriceSort(value), + } + ]; return (