UNPKG

ignite-boilerplate-andross-typescript

Version:
19 lines (16 loc) 289 B
export const toggleDarkMode = () => { return { type: 'toggle_dark_mode' }; }; export const toggleDirection = () => { return { type: 'toggle_direction' }; }; export const selectLocale = (locale:string) => { return { type: 'select_locale', payload:locale }; };