Skip to content

Instantly share code, notes, and snippets.

@LukeSmetham
Created September 24, 2019 09:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save LukeSmetham/50af9a80403fcbb8a952895670287bb1 to your computer and use it in GitHub Desktop.
Save LukeSmetham/50af9a80403fcbb8a952895670287bb1 to your computer and use it in GitHub Desktop.
import { TOGGLE_ATTENDEES_CHAT, SET_UNREAD_COUNT } from './types';
export const toggleAttendeesChat = () => ({
type: TOGGLE_ATTENDEES_CHAT,
});
export const setUnreadCount = (count) => ({
type: SET_UNREAD_COUNT,
count,
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment