import {createSelector} from "reselect";
const selectPaymentMethodReducer = (state) => state.paymentMethodsReducer;
export const selectPaymentMethod = createSelector(
[selectPaymentMethodReducer],
(paymentMethod) => paymentMethod
);