mirror of
https://gitcode.com/GitHub_Trending/ji/jitsi-meet.git
synced 2026-05-14 22:17:48 +00:00
9 lines
239 B
TypeScript
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;
|
|
}
|