UNPKG

@o2xp/react-datatable

Version:

@o2xp/react-datatable is a modulable component to render data in a table with some nice features !

20 lines (17 loc) 432 B
const defaultState = { customProps: null, CustomTableBodyCell: null, CustomTableBodyRow: null, CustomTableHeaderCell: null, CustomTableHeaderRow: null, customDataTypes: [] }; const customComponentsReducer = (state = defaultState, action) => { switch (action.type) { case "INITIALIZE_CUSTOM_COMPONENTS": return action.payload; default: return state; } }; export default customComponentsReducer;