async componentDidMount()

in assets/src/modules/cart/CartProductRow.tsx [35:42]


  async componentDidMount() {
    try {
      const book = await this.getBook(this.props.order);
      this.setState({ book });
    } catch (e) {
      alert(e);
    }
  }