Tried it like this, but it throws errors: ```javascript import SVG from 'svg.js'; import 'svg.path.js/svg.path.js'; let draw = SVG( 'drawing' ); var rect = draw.path().m({x: 100, y: 100}).C({x: 100, y: 200}, {x: 200, y: 200}, {x: 200, y: 100}); ``` Drawing with only with svg.js works just fine