You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
390 B
17 lines
390 B
const INITIAL_STATE = {
|
|
longitude: null, latitude: null
|
|
}
|
|
|
|
export default function account(state = INITIAL_STATE, action) {
|
|
switch (action.type) {
|
|
case 'UPDATE_Local':
|
|
return {
|
|
...state,
|
|
...action.payload
|
|
}
|
|
case 'DELETE_Local':
|
|
return INITIAL_STATE
|
|
default:
|
|
return state
|
|
}
|
|
}
|