mirror of
https://github.com/strapi/strapi.git
synced 2025-12-02 10:04:09 +00:00
19 lines
244 B
JavaScript
19 lines
244 B
JavaScript
/*
|
|
*
|
|
* App reducer
|
|
*
|
|
*/
|
|
|
|
import { fromJS } from 'immutable';
|
|
|
|
const initialState = fromJS({});
|
|
|
|
function appReducer(state = initialState, action) {
|
|
switch (action.type) {
|
|
default:
|
|
return state;
|
|
}
|
|
}
|
|
|
|
export default appReducer;
|