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