Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

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