Implicitly return

pull/10616/head
Andrew Watkins 2017-09-29 15:19:33 -07:00
parent 32c0e6f1cf
commit 5d0670e6f2
1 changed files with 22 additions and 24 deletions

View File

@ -99,8 +99,7 @@ class LayoutRenderer extends Component {
isDraggable={isDashboard}
isResizable={isDashboard}
>
{cells.map(cell => {
return (
{cells.map(cell =>
<div key={cell.i}>
<Layout
key={cell.i}
@ -121,8 +120,7 @@ class LayoutRenderer extends Component {
onSummonOverlayTechnologies={onSummonOverlayTechnologies}
/>
</div>
)
})}
)}
</GridLayout>
</Resizeable>
)