fix last commit

This commit is contained in:
casperlamboo 2017-11-08 14:48:54 +01:00
parent ac42aa31ec
commit b9c20c6028

View File

@ -50,7 +50,7 @@ class DoodlePreview extends React.Component {
render() {
const { width, height, className } = this.props;
return (
<canvas className={className} width={width} height={height} ref="canvas" />
<canvas width={width} height={height} className={className} ref="canvas" />
);
}
}