categoryBInitialState.js 410 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,
	delayExposeData: true,
	contentError: null,
});

export default InitialStateB;