fix(rn) Fix native after stage filmstrip merge (#11247)

This commit is contained in:
Robert Pintilii 2022-03-29 13:42:01 +03:00 committed by Jaya Allamsetty
parent 636c16f269
commit 5add987711
1 changed files with 9 additions and 0 deletions

View File

@ -102,3 +102,12 @@ export function isReorderingEnabled(state) {
return enableThumbnailReordering;
}
/**
* Whether the stage filmstrip is disabled or not.
*
* @param {Object} state - Redux state.
* @returns {boolean}
*/
export function isStageFilmstripEnabled() {
return false;
}