master
alex 2024-03-24 14:40:46 +01:00
parent 4f392f5c6a
commit 16b766477b
1 changed files with 7 additions and 1 deletions

View File

@ -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}
<PageInDevelopment showBackButton={false} />
</>
);
}
/*