sectionInitialState.js
385 Bytes
/**
* # guideInitialState.js
*
*
*/
'use strict';
/**
* ## Import immutable record
*/
import {Record, List, Map} from 'immutable';
/**
* ## InitialState
*
* The fields we're concerned with
*/
let InitialState = Record({
isFetching: false,
error: null,
banner: new Map(),
notice: new Map(),
section: new Map(),
recommendation: List(),
});
export default InitialState;