Remove VM dependency

This commit is contained in:
DD Liu 2017-07-13 14:47:23 -04:00
parent 4cc251be24
commit 836088a8cb

View file

@ -1,16 +1,14 @@
import React from 'react'; import React from 'react';
import VM from 'scratch-vm';
export default class PaintEditorComponent extends React.Component { export default class PaintEditorComponent extends React.Component {
render () { render () {
return ( return (
<div className="paint-editor"> <div className="paint-editor">
BANANAS BANANAS
</div> </div>
); );
} }
} }
PaintEditorComponent.defaultProps = { PaintEditorComponent.defaultProps = {
vm: new VM()
}; };