mirror of
https://github.com/scratchfoundation/scratch-paint.git
synced 2024-12-22 13:32:28 -05:00
Remove VM dependency
This commit is contained in:
parent
4cc251be24
commit
836088a8cb
1 changed files with 2 additions and 4 deletions
|
@ -1,16 +1,14 @@
|
|||
import React from 'react';
|
||||
import VM from 'scratch-vm';
|
||||
|
||||
export default class PaintEditorComponent extends React.Component {
|
||||
render () {
|
||||
return (
|
||||
<div className="paint-editor">
|
||||
BANANAS
|
||||
BANANAS
|
||||
</div>
|
||||
);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
PaintEditorComponent.defaultProps = {
|
||||
vm: new VM()
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue