UNPKG

strapi-plugin-content-manager

Version:

A powerful UI to easily manage your data.

17 lines (13 loc) 269 B
/** * * SettingsPage reducer */ import { fromJS } from 'immutable'; const initialState = fromJS({}); function settingsPageReducer(state = initialState, action) { switch (action.type) { default: return state; } } export default settingsPageReducer;