Files
jitsi-meet/react/features/reactions/functions.web.ts
2023-03-31 14:04:33 +03:00

14 lines
348 B
TypeScript

import { IReduxState } from '../app/types';
export * from './functions.any';
/**
* Returns the visibility state of the reactions menu.
*
* @param {Object} state - The state of the application.
* @returns {boolean}
*/
export function getReactionsMenuVisibility(state: IReduxState): boolean {
return state['features/reactions'].visible;
}