lbry-desktop/src/renderer/redux/selectors/video.js
2017-12-21 22:21:22 -03:00

6 lines
238 B
JavaScript

import { createSelector } from 'reselect';
const selectState = state => state.video || {};
// eslint-disable-next-line import/prefer-default-export
export const selectVideoPause = createSelector(selectState, state => state.videoPause);