constructor()

in client/src/pages/product-list.js [27:34]


  constructor() {
    super();
    this.title = 'Product List';
    this.state = {
      status: 'loading',
      products: [],
    };
  }