categoryInitialState.js
291 Bytes
'use strict';
import {Record, List, Map} from 'immutable';
let InitialState = Record({
channelFliter:0,
currentChannelId:'boy',
currentCateId:'0',
categoryList: new (Record({
boy: List(),
girl: List(),
kids: List(),
lifestyle: List(),
})),
});
export default InitialState;