The code powering m.abunchtell.com https://m.abunchtell.com
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.
 
 
 
 

15 lines
238 B

  1. import { saveSettings } from './settings';
  2. export const EMOJI_USE = 'EMOJI_USE';
  3. export function useEmoji(emoji) {
  4. return dispatch => {
  5. dispatch({
  6. type: EMOJI_USE,
  7. emoji,
  8. });
  9. dispatch(saveSettings());
  10. };
  11. };