import { Component } from 'react';
import injector from './../lib/components/Injector';

const HomePageProductList = ({ state }) => (
  <table>
    <head>
      <tr>
        <th>Product</th>
        <th>Price</th>
      </tr>
    </head>
    <body>
      {state.products.map(product => (
        <tr key={product.id}>
          <td>{product.name}</td>
          <td>{product.price}</td>
        </tr>
      ))}
    </body>
  </table>
);

export default injector(HomePageProductList);
