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.

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