Skip to content
Snippets Groups Projects
Commit 52562376 authored by Ray Schamp's avatar Ray Schamp
Browse files

Make ...rest syntax consistent.

parent 7542f1b5
No related branches found
No related tags found
No related merge requests found
......@@ -54,11 +54,11 @@ const GUIComponent = props => {
<TargetPane
mediaLibrary={mediaLibrary}
vm={vm}
{... targetPaneProps}
{...targetPaneProps}
/>
<Blocks
vm={vm}
{... blocksProps}
{...blocksProps}
/>
</div>
);
......
......@@ -23,7 +23,7 @@ class SpriteSelectorItem extends React.Component {
return (
<SpriteSelectorItemComponent
onClick={this.handleClick}
{... props}
{...props}
/>
);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment