mirror of
https://github.com/LBRYFoundation/lbry-desktop.git
synced 2025-09-01 09:45:10 +00:00
9 lines
237 B
JavaScript
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
|
|
);
|