quintodrome/ui/src/actions/themes.js

6 lines
128 B
JavaScript

export const CHANGE_THEME = 'CHANGE_THEME'
export const changeTheme = (theme) => ({
type: CHANGE_THEME,
payload: theme,
})