/* eslint-disable @typescript-eslint/no-explicit-any */
"use client";

import PropertyView from "@/screens/PropertyView/propertyView";

const PropertyPage = ({ params }: any) => {
  const { id } = params;

  return <PropertyView id={id} />;
};

export default PropertyPage;
