mirror of
https://github.com/strapi/strapi.git
synced 2025-08-12 02:38:21 +00:00
19 lines
266 B
JavaScript
19 lines
266 B
JavaScript
![]() |
/**
|
||
|
*
|
||
|
* ConfigPage reducer
|
||
|
*
|
||
|
*/
|
||
|
|
||
|
import { fromJS } from 'immutable';
|
||
|
|
||
|
const initialState = fromJS({});
|
||
|
|
||
|
function configPageReducer(state = initialState, action) {
|
||
|
switch (action.type) {
|
||
|
default:
|
||
|
return state;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
export default configPageReducer;
|