mirror of
https://github.com/kingomarnajjar/flex-template-web.git
synced 2026-07-28 20:53:24 +10:00
Prettier changes
This commit is contained in:
parent
2991b484d5
commit
e87a25cb1d
1 changed files with 3 additions and 1 deletions
|
|
@ -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>
|
||||
);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue