Skip to content

Commit

Permalink
Remove item print container
Browse files Browse the repository at this point in the history
  • Loading branch information
inukshuk committed Mar 22, 2019
1 parent 667d038 commit d01013a
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions src/components/print/item.js
Expand Up @@ -5,12 +5,10 @@ const { Photo } = require('./photo')
const { arrayOf, object } = require('prop-types')

const Item = ({ photos }) => (
<div className="item">
{photos.map(photo =>
<Photo
{...photo}
key={photo.id}/>)}
</div>
photos.map(photo =>
<Photo
{...photo}
key={photo.id}/>)
)

Item.propTypes = {
Expand Down

0 comments on commit d01013a

Please sign in to comment.