From 8e360758c64cf8122ec66cbefc872ff2fdaf819a Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 5 May 2026 15:16:19 +0000 Subject: [PATCH] Update src/app/properties/page.tsx --- src/app/properties/page.tsx | 10 ++++++++++ 1 file changed, 10 insertions(+) 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 (