/** * Grand Total sub-component * * @type {*|Function} * * @author Rai Icasiano */ window.GrandTotal = React.createClass({ getGrandTotal: function(){ return this.props.getGrandTotal(); }, render: function () { return (
Grand Total  {this.props.getCurrency()}{this.getGrandTotal()}



); } });