mirror of
https://github.com/glitch-soc/mastodon.git
synced 2025-01-16 04:32:57 -05:00
2e5fb45be5
Port 0cdb07757050825725cac76f1c9cf11cf64acc0a to glitch-soc Signed-off-by: Claire <claire.github-309c@sitedethib.com>
13 lines
231 B
JavaScript
13 lines
231 B
JavaScript
import { saveSettings } from './settings';
|
|
|
|
export const LANGUAGE_USE = 'LANGUAGE_USE';
|
|
|
|
export const useLanguage = language => dispatch => {
|
|
dispatch({
|
|
type: LANGUAGE_USE,
|
|
language,
|
|
});
|
|
|
|
dispatch(saveSettings());
|
|
};
|