# problem i copied and pasted [some of these](https://codepen.io/aurer/pen/jEGbA) into my choo app, only to find `bel` wasn't too happy about the DOM structure. `scripts:browserify.bundle multiple root elements must be wrapped in an enclosing tag` doesn't work: ```js <svg> <path> <animateTransform /> </path> </svg> ``` does work, but non-equivalent: ```js <svg> <path /> </svg> ``` related: https://github.com/choojs/choo/issues/514