jiti-meet/react/features/reactions/functions.web.ts

10 lines
261 B
TypeScript

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