feat: move Configuration menu to Personal settings

This commit is contained in:
Deluan
2020-03-31 21:28:50 -04:00
parent 6cddcd6f0d
commit 9f00fb0f05
9 changed files with 38 additions and 27 deletions
+8
View File
@@ -0,0 +1,8 @@
import { CHANGE_THEME } from './actions'
export default (previousState = 'DarkTheme', { type, payload }) => {
if (type === CHANGE_THEME) {
return payload
}
return previousState
}