mirror of
https://gitcode.com/GitHub_Trending/ji/jitsi-meet.git
synced 2026-05-14 21:57:47 +00:00
12 lines
194 B
JavaScript
12 lines
194 B
JavaScript
// @flow
|
|
|
|
/**
|
|
* Selector to return lobby state.
|
|
*
|
|
* @param {any} state - State object.
|
|
* @returns {any}
|
|
*/
|
|
export function getLobbyState(state: any) {
|
|
return state['features/lobby'];
|
|
}
|