Prettier changes

This commit is contained in:
Vesa Luusua 2017-07-10 14:18:49 +03:00
parent 2991b484d5
commit e87a25cb1d

View file

@ -97,7 +97,9 @@ const SortableImages = SortableContainer(props => {
const classes = classNames(css.root, className);
return (
<ol className={classes}>
{images.map((image, index) => <SortableImage {...image} index={index} key={image.id} />)}
{images.map((image, index) => {
return <SortableImage {...image} index={index} key={image.id} />;
})}
{children}
</ol>
);