From 836088a8cbb0d50ac025fa79cfabd9ea843b1766 Mon Sep 17 00:00:00 2001 From: DD Liu Date: Thu, 13 Jul 2017 14:47:23 -0400 Subject: [PATCH] Remove VM dependency --- src/components/paint-editor.jsx | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/components/paint-editor.jsx b/src/components/paint-editor.jsx index 8bbb66b6..0ca019f9 100644 --- a/src/components/paint-editor.jsx +++ b/src/components/paint-editor.jsx @@ -1,16 +1,14 @@ import React from 'react'; -import VM from 'scratch-vm'; export default class PaintEditorComponent extends React.Component { render () { return (
- BANANAS + BANANAS
); - } + } } PaintEditorComponent.defaultProps = { - vm: new VM() };