Blame view

js/vip/reducers/yearActivity/yearActivityInitialState.js 255 Bytes
1 2 3 4 5 6
'use strict';

import {Record, List, Map} from 'immutable';

let InitialState = Record({
	isFetching: false,
7 8 9 10 11
	list: List(),
	currentPage: 0,
	endReached: false,
	similarIndex: -1,
	total: 0,
12
	pageSize: 12,
13
	pageCount: 0,
14 15 16
});

export default InitialState;