feat: move Configuration menu to Personal settings
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
import { CHANGE_THEME } from './actions'
|
||||
|
||||
export default (previousState = 'DarkTheme', { type, payload }) => {
|
||||
if (type === CHANGE_THEME) {
|
||||
return payload
|
||||
}
|
||||
return previousState
|
||||
}
|
||||
Reference in New Issue
Block a user