Skip to content

Commit c813282

Browse files
committed
💚 fix tests failing because of missing spaces
1 parent 35f68af commit c813282

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

examples/shopping-cart/src/components/Product.js

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
import React, { PropTypes } from 'react'
22

3-
const Product = ({ price, quantity, title }) => <div>
4-
{title} - &#36;{price} {quantity ? `x ${quantity}` : null}
5-
</div>
3+
const Product = ({ price, quantity, title }) =>
4+
<div> {title} - &#36;{price} {quantity ? `x ${quantity}` : null} </div>
65

76
Product.propTypes = {
87
price: PropTypes.number,

0 commit comments

Comments
 (0)