2022-07-28 19:58:26 +00:00
|
|
|
import PaymentPage from "@calcom/features/ee/payments/components/PaymentPage";
|
|
|
|
import { getServerSideProps } from "@calcom/features/ee/payments/pages/payment";
|
|
|
|
import { inferSSRProps } from "@calcom/types/inferSSRProps";
|
2021-09-22 18:36:13 +00:00
|
|
|
|
|
|
|
export default function Payment(props: inferSSRProps<typeof getServerSideProps>) {
|
|
|
|
return <PaymentPage {...props} />;
|
|
|
|
}
|
|
|
|
|
|
|
|
export { getServerSideProps };
|