appInitialState.js 254 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 'use strict'; import {Record, List, Map} from 'immutable'; let InitialState = Record({ platform: 'ios', // ios, android channel: 1, // 1 - boy, 2 - girl, 3 - kid, 4 - lifestyle, 5 - yoho host: 'http://api.yoho.cn', }); export default InitialState;