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

9 lines
239 B
TypeScript

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