in dev
parent
4f392f5c6a
commit
16b766477b
|
@ -4,6 +4,7 @@ import { myFetch, showUnkownErrorNotification } from "../../utils";
|
||||||
import { useTranslation } from "react-i18next";
|
import { useTranslation } from "react-i18next";
|
||||||
import { CreditCardOutlined } from "@ant-design/icons";
|
import { CreditCardOutlined } from "@ant-design/icons";
|
||||||
import { useState } from "react";
|
import { useState } from "react";
|
||||||
|
import PageInDevelopment from "../PageInDevelopment";
|
||||||
// import { ChoosenProduct } from "../Authentication/SignUp";
|
// import { ChoosenProduct } from "../Authentication/SignUp";
|
||||||
|
|
||||||
export default function PaymentPlan() {
|
export default function PaymentPlan() {
|
||||||
|
@ -16,7 +17,12 @@ export default function PaymentPlan() {
|
||||||
const [isRequestingBillingDetails, setIsRequestingBillingDetails] =
|
const [isRequestingBillingDetails, setIsRequestingBillingDetails] =
|
||||||
useState(false);
|
useState(false);
|
||||||
|
|
||||||
return <>{notificationContextHolder}</>;
|
return (
|
||||||
|
<>
|
||||||
|
{notificationContextHolder}
|
||||||
|
<PageInDevelopment showBackButton={false} />
|
||||||
|
</>
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
Loading…
Reference in New Issue