//* Imports import React from 'react'; import Quotes from '@muetab/quotes'; export default class Quote extends React.Component { constructor(...args) { super(...args); this.state = { quote: '', author: '' }; } async getQuote() { try { // First we try and get a quote from the API... let data = await fetch('https://api.muetab.xyz/getQuote'); data = await data.json(); this.setState({ quote: data.quote, author: data.author }); } catch (e) { // ..and if that fails we load one locally const quote = Quotes.random(); // Get a random quote from our local package this.setState({ quote: quote.quote, author: quote.author }); // Set the quote } } componentDidMount() { this.getQuote(); } render() { return [

{`"${this.state.quote}"`}

, // perm_identity,

{`${this.state.author}`}

, ]; } }