12 lines
265 B
JavaScript
12 lines
265 B
JavaScript
|
// @flow
|
||
|
|
||
|
/**
|
||
|
* Returns the visibility state of the reactions menu.
|
||
|
*
|
||
|
* @param {Object} state - The state of the application.
|
||
|
* @returns {boolean}
|
||
|
*/
|
||
|
export function getReactionsMenuVisibility(state: Object) {
|
||
|
return state['features/reactions'].visible;
|
||
|
}
|