lbry-desktop/src/renderer/redux/selectors/shape_shift.js

10 lines
222 B
JavaScript
Raw Normal View History

import { createSelector } from 'reselect';
2017-12-01 04:51:55 +01:00
const selectState = state => state.shapeShift;
2017-12-01 04:51:55 +01:00
export const selectShapeShift = createSelector(selectState, state => ({
2017-12-01 04:51:55 +01:00
...state,
}));
export { selectShapeShift as default };