mirror of
https://github.com/LBRYFoundation/lbry-desktop.git
synced 2025-08-27 15:31:27 +00:00
6 lines
238 B
JavaScript
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);
|