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