You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

functions.js 194B

1234567891011
  1. // @flow
  2. /**
  3. * Selector to return lobby state.
  4. *
  5. * @param {any} state - State object.
  6. * @returns {any}
  7. */
  8. export function getLobbyState(state: any) {
  9. return state['features/lobby'];
  10. }