UNPKG

303 BMarkdownView Raw
1# Action Types
2
3If you want to listen for interal `react-redux-grid` Actions, you can import them and add them to your own reducers.
4
5```js
6import { ActionTypes } from 'react-redux-grid';
7
8switch (action.type) {
9 case ActionTypes.SET_LOADING_STATE:
10 // handle new loading state for grid
11}
12```