constructor()

in client/src/pages/product.js [33:43]


  constructor() {
    super();
    this.state = {
      status: 'loading',
      productItem: {},
    };

    // Initial value for updateParent
    // Trigger parent components update lifecycle
    this.updateParent = () => {};
  }