8 lines
224 B
JavaScript
8 lines
224 B
JavaScript
// @flow
|
|
import { createSelector } from 'reselect';
|
|
|
|
const selectState = (state) => state.coinSwap || {};
|
|
|
|
export const selectCoinSwaps = createSelector(selectState, (state: CoinSwapState) => {
|
|
return state.coinSwaps;
|
|
});
|