import CreatePurchasePageBody from "@/features/purchase-orders/create-purchase-page-body";

type NewPurchasePageProps = {
  params: {
    app: string;
  };
};

export default function NewPurchasePage({ params }: NewPurchasePageProps) {
  return <CreatePurchasePageBody app={params.app} />;
}
