mirror of
https://github.com/scratchfoundation/scratch-paint.git
synced 2025-01-14 00:19:46 -05:00
17 lines
320 B
React
17 lines
320 B
React
|
import React from 'react';
|
||
|
import VM from 'scratch-vm';
|
||
|
|
||
|
export default class PaintEditorComponent extends React.Component {
|
||
|
render () {
|
||
|
return (
|
||
|
<div className="paint-editor">
|
||
|
BANANAS
|
||
|
</div>
|
||
|
);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
PaintEditorComponent.defaultProps = {
|
||
|
vm: new VM()
|
||
|
};
|