import CreateQuotationPageBody from "@/features/quotations/create-quotation-page-body";

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

export default function NewQuotationPage({ params }: NewQuotationPageProps) {
  return <CreateQuotationPageBody app={params.app} />;
}
