diff options
Diffstat (limited to 'client/components')
| -rw-r--r-- | client/components/App.jsx | 5 | ||||
| -rw-r--r-- | client/components/ProductList.jsx | 2 |
2 files changed, 5 insertions, 2 deletions
diff --git a/client/components/App.jsx b/client/components/App.jsx index 1b58e24..c4555c1 100644 --- a/client/components/App.jsx +++ b/client/components/App.jsx @@ -41,7 +41,10 @@ export default class App extends React.Component { const orders = this.state.orders return ( <div> - <ProductList products={products} handleSelect={(product) => this.pick(product)} /> + <div className='header'> + <img src='/img/msa_logo.gif' className='logo' /> + <ProductList products={products} handleSelect={(product) => this.pick(product)} /> + </div> <OrderList product={product} orders={orders} /> </div> ) diff --git a/client/components/ProductList.jsx b/client/components/ProductList.jsx index ab00e9f..edc53f1 100644 --- a/client/components/ProductList.jsx +++ b/client/components/ProductList.jsx @@ -21,7 +21,7 @@ export default class ProductList extends React.Component { </option> ) }) - items.unshift(<option key={-1} value={-1}>Select a product...</option>) + items.unshift(<option key={-1} value={-1}>Please choose a product...</option>) return ( <select value={this.state.value} onChange={this.pick}> {items} |
