The code powering m.abunchtell.com https://m.abunchtell.com
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 

15 行
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. };