mirror of
https://git.kescher.at/CatCatNya/catstodon.git
synced 2024-11-23 19:18:07 +01:00
155424e52f
I don't like it changing files this way, but it's basically what
c49213f0ea
and a few others did.
14 lines
237 B
JavaScript
14 lines
237 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());
|
|
};
|
|
}
|