"use client";

import ClientView from "@/components/clients/client-view";

export default async function View({ params }: any) {
  const { Id } = params;

  return (
    <>
      <ClientView clientId={Id} />
    </>
  );
}
