lbry-desktop/src/renderer/redux/selectors/video.js
2017-12-19 14:41:00 -05:00

9 lines
237 B
JavaScript

import * as settings from "constants/settings";
import { createSelector } from "reselect";
const _selectState = state => state.video || {};
export const selectVideoPause = createSelector(
_selectState,
state => state.videoPause
);