This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { useState } from "react"; | |
import FilterBar from "../components/FilterBar"; | |
import Listings from "../components/Listings"; | |
export default function Home() { | |
const [filters, setFilters] = useState({ | |
priceRange: [0, 1000000], | |
placeType: "Any type", | |
amenities: [], | |
propertyTypes: [], |