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.

actions.web.js 267B

12345678910111213141516
  1. // @flow
  2. import {
  3. TOGGLE_REACTIONS_VISIBLE
  4. } from './actionTypes';
  5. /**
  6. * Toggles the visibility of the reactions menu.
  7. *
  8. * @returns {Function}
  9. */
  10. export function toggleReactionsMenuVisibility() {
  11. return {
  12. type: TOGGLE_REACTIONS_VISIBLE
  13. };
  14. }