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") { return

Error loading property: {error}

; } // console.log("selectedProperty", selectedProperty); return ( <>
{selectedProperty ? (

{selectedProperty.title}

Email: {selectedProperty.useremail}

{/* Add more property details as needed */}
) : (

Property not found.

)}
); }; export default PropertyView;