您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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. }