mirror of
https://gitcode.com/GitHub_Trending/ji/jitsi-meet.git
synced 2025-12-30 11:22:31 +00:00
Co-authored-by: robertpin <robert.pin9@gmail.com> Co-authored-by: Gabriel Borlea <gabriel.borlea@8x8.com>
10 lines
261 B
TypeScript
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;
|
|
}
|