// ----------------------------------------------------------------------------- // Rent-Ka — Rental listings aggregator (Canada, outside Québec) // Author: Simon-Pierre Boucher — contact@spboucher.ai // pages/Favoris.tsx: the rentals saved by the signed-in account // ----------------------------------------------------------------------------- import { useEffect, useState } from "react"; import { Link } from "react-router-dom"; import { Listing, fetchFavorites } from "../api"; import { useAccount } from "../account"; import ListingCard from "../components/ListingCard"; import { IcoHeart } from "../components/Icons"; export default function FavorisPage() { const { me, loaded, favs } = useAccount(); const [listings, setListings] = useState
Tap the heart on a listing to find it here.
Explore rentals