mirror of
https://github.com/LBRYFoundation/lbry-desktop.git
synced 2025-08-30 00:41:24 +00:00
9 lines
222 B
JavaScript
9 lines
222 B
JavaScript
import { createSelector } from 'reselect';
|
|
|
|
const selectState = state => state.shapeShift;
|
|
|
|
export const selectShapeShift = createSelector(selectState, state => ({
|
|
...state,
|
|
}));
|
|
|
|
export { selectShapeShift as default };
|