data-feed
Data feed presentation as alternative to table.
Requirements
redux-form
should be installed and configured with form
reducer.
import { combineReducers } from 'redux'
import { reducer as formReducer } from 'redux-form'
const rootReducer = combineReducers({
form: formReducer
});
Set Up
Reducer
Add feed reducer:
import { combineReducers } from 'redux'
import { feedReducer } from 'data-feed';
const rootReducer = combineReducers({
feed: feedReducer
});
Saga
Add feed saga:
import { feedSaga } from 'data-feed';
export function* RootSaga(): SagaIterator {
yield all([fork(feedSaga)]);
}