mirror of
https://git.kescher.at/CatCatNya/catstodon.git
synced 2024-11-24 05:48:07 +01:00
14 lines
238 B
JavaScript
14 lines
238 B
JavaScript
import { saveSettings } from './settings';
|
|
|
|
export const EMOJI_USE = 'EMOJI_USE';
|
|
|
|
export function useEmoji(emoji) {
|
|
return dispatch => {
|
|
dispatch({
|
|
type: EMOJI_USE,
|
|
emoji,
|
|
});
|
|
|
|
dispatch(saveSettings());
|
|
};
|
|
};
|