8 lines
242 B
JavaScript
8 lines
242 B
JavaScript
|
import {createSelector} from "reselect";
|
||
|
|
||
|
const selectPaymentMethodReducer = (state) => state.paymentMethodsReducer;
|
||
|
|
||
|
export const selectPaymentMethod = createSelector(
|
||
|
[selectPaymentMethodReducer],
|
||
|
(paymentMethod) => paymentMethod
|
||
|
);
|