"use client";

import { useParams, notFound } from "next/navigation";
import ClientPropertiesListPage from "@/features/client/client-properties-list";

export default function Page() {
  const { app } = useParams() as { app: string };
  if (app !== "client" && app !== "property") {
    notFound();
  }
  return <ClientPropertiesListPage />;
}
