Avoid object assign in preview component

old
Javi Velasco 2015-11-07 10:18:56 +01:00
parent 1547bd6217
commit 917127936f
1 changed files with 1 additions and 1 deletions

View File

@ -16,7 +16,7 @@ const Preview = React.createClass({
getDefaultProps () {
return {
className: '',
scope: Object.assign({ React }, ReactToolbox)
scope: { React, ...ReactToolbox }
};
},