1
0
mirror of https://github.com/glitch-soc/mastodon.git synced 2025-02-16 07:33:51 -05:00

15 lines
238 B
JavaScript
Raw Normal View History

import { saveSettings } from './settings';
export const EMOJI_USE = 'EMOJI_USE';
export function useEmoji(emoji) {
return dispatch => {
dispatch({
type: EMOJI_USE,
emoji,
});
dispatch(saveSettings());
};
};