diff --git a/src/Pages/PaymentPlan/index.js b/src/Pages/PaymentPlan/index.js index 108cae1..53cc5be 100644 --- a/src/Pages/PaymentPlan/index.js +++ b/src/Pages/PaymentPlan/index.js @@ -4,6 +4,7 @@ import { myFetch, showUnkownErrorNotification } from "../../utils"; import { useTranslation } from "react-i18next"; import { CreditCardOutlined } from "@ant-design/icons"; import { useState } from "react"; +import PageInDevelopment from "../PageInDevelopment"; // import { ChoosenProduct } from "../Authentication/SignUp"; export default function PaymentPlan() { @@ -16,7 +17,12 @@ export default function PaymentPlan() { const [isRequestingBillingDetails, setIsRequestingBillingDetails] = useState(false); - return <>{notificationContextHolder}; + return ( + <> + {notificationContextHolder} + + + ); } /*