2021-09-22 18:36:13 +00:00
|
|
|
import PaymentPage from "@ee/components/stripe/PaymentPage";
|
|
|
|
import { getServerSideProps } from "@ee/pages/payment/[uid]";
|
2021-09-22 19:52:38 +00:00
|
|
|
|
2021-09-22 18:36:13 +00:00
|
|
|
import { inferSSRProps } from "@lib/types/inferSSRProps";
|
|
|
|
|
|
|
|
export default function Payment(props: inferSSRProps<typeof getServerSideProps>) {
|
|
|
|
return <PaymentPage {...props} />;
|
|
|
|
}
|
|
|
|
|
|
|
|
export { getServerSideProps };
|