categoryBInitialState.js 366 Bytes
'use strict';

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

let InitialStateB = Record({
	isFetching: false,
	categoryError: null,
	currentChannelId: '1',
	currentChannelValue: 'boy',
	currentCateId: '0',
	currentCateValue: '',
	currentSubCateData: Map(),
	cacheSubCateData: Map(),
	categoryList: Map(),
	contentFetching: false,

});

export default InitialStateB;