* Adds PageWrapper to pages * Add missing PageWrapper --------- Co-authored-by: Keith Williams <keithwillcode@gmail.com> Co-authored-by: Hariom Balhara <hariombalhara@gmail.com>
12 lines
467 B
TypeScript
12 lines
467 B
TypeScript
import PaymentPage from "@calcom/features/ee/payments/components/PaymentPage";
|
|
import { getServerSideProps } from "@calcom/features/ee/payments/pages/payment";
|
|
import type { inferSSRProps } from "@calcom/types/inferSSRProps";
|
|
|
|
import PageWrapper from "@components/PageWrapper";
|
|
|
|
export default function Payment(props: inferSSRProps<typeof getServerSideProps>) {
|
|
return <PaymentPage {...props} />;
|
|
}
|
|
Payment.PageWrapper = PageWrapper;
|
|
export { getServerSideProps };
|