Styleguide styling fix for ListingCard

This commit is contained in:
Vesa Luusua 2017-04-04 17:43:45 +03:00
parent 7ada8024de
commit 5700b6f578

View file

@ -7,7 +7,7 @@ const author = createUser('user1');
const listing = { ...createListing('listing1'), author };
const ListingCardWrapper = props => (
<div style={{ width: '400px' }}>
<div style={{ maxWidth: '400px' }}>
<ListingCard {...props} />
</div>
);