mirror of
https://github.com/strapi/strapi.git
synced 2025-11-07 21:58:23 +00:00
17 lines
266 B
JavaScript
17 lines
266 B
JavaScript
|
|
/**
|
||
|
|
*
|
||
|
|
* SettingPage reducer
|
||
|
|
*/
|
||
|
|
|
||
|
|
import { fromJS } from 'immutable';
|
||
|
|
|
||
|
|
const initialState = fromJS({});
|
||
|
|
|
||
|
|
function settingPageReducer(state = initialState, action) {
|
||
|
|
switch (action.type) {
|
||
|
|
default:
|
||
|
|
return state;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
export default settingPageReducer;
|