soapbox/app/gabsocial/actions/theme.js

8 lines
157 B
JavaScript

export const SET_THEME = 'SET_THEME';
export function setTheme(theme) {
return (dispatch, getState) => {
dispatch({ type: SET_THEME, theme });
};
}