import { ViewEmployeePage } from "@/modules/admin/employees/components/ViewEmployee";
import { use } from "react";

export default function Page({ params }: { params: Promise<{ id: string }> }) {
  const { id } = use(params);
  return <ViewEmployeePage id={id} />;
}
