+ {this.state.loading !== true ?
+ //If state is loading show spinner otherwise show quote
+
+ {this.props.manual !== true ?
+ //If manual quote is not on then show quote generated from third party
+
+
"{this.state.quote}"
+ - {this.state.author}
+
+ : //Show Manual quote
+
+
"{this.props.manualQuote}"
+ - {this.props.manualAuthor}
+
+ }
+