Skip to content

Latest commit

 

History

History
12 lines (9 loc) · 303 Bytes

USING_TYPES.md

File metadata and controls

12 lines (9 loc) · 303 Bytes

Action Types

If you want to listen for interal react-redux-grid Actions, you can import them and add them to your own reducers.

import { ActionTypes } from 'react-redux-grid';

switch (action.type) {
    case ActionTypes.SET_LOADING_STATE:
        // handle new loading state for grid
}