bigbuffet-rw/app/soapbox/actions/theme.js

9 lines
131 B
JavaScript
Raw Normal View History

2020-05-30 17:05:01 -07:00
export const SET_THEME = 'SET_THEME';
export function setTheme(themeData) {
return {
type: SET_THEME,
themeData,
};
}