import SelectedPaymentOptionView from '@akinon/next/components/selected-payment-option-view'; import { useAppSelector } from '@akinon/next/redux/hooks'; import { CheckoutPaymentOption } from '@akinon/next/types'; import { partAttrs } from '@akinon/pz-theme/src/utils/part-styles'; import clsx from 'clsx'; import { RootState } from '@theme/redux/store'; import PaymentOptionButtons from './payment-option-buttons'; export const PaymentOptionViews: Array = []; const PaymentStep = () => { const isPaymentStepBusy = useAppSelector( (state: RootState) => state.checkout.steps.payment.busy ); return (
); }; export default PaymentStep;