import { useEffect } from "react"; import { useDispatch, useSelector } from "react-redux"; import { useParams } from "react-router-dom"; import { fetchPropertyById } from "../redux/features/propertySlice"; const PropertyView = () => { const { id } = useParams(); // Extract the property ID from the route const dispatch = useDispatch(); const { selectedProperty, status, error } = useSelector((state) => state.property); useEffect(() => { // Fetch the property by ID when the component loads if (id) { dispatch(fetchPropertyById(id)); } }, [id, dispatch]); if (status === "loading") { return
Loading property details...
; } if (status === "failed") { returnError loading property: {error}
; } // console.log("selectedProperty", selectedProperty); return ( <>Email: {selectedProperty.useremail}
{/* Add more property details as needed */}Property not found.
)}