Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

functions.web.js 265B

1234567891011
  1. // @flow
  2. /**
  3. * Returns the visibility state of the reactions menu.
  4. *
  5. * @param {Object} state - The state of the application.
  6. * @returns {boolean}
  7. */
  8. export function getReactionsMenuVisibility(state: Object) {
  9. return state['features/reactions'].visible;
  10. }