$view canvas?

I am writing a wrapper for a rendering library that needs to either:

a) Get passed a canvas element to draw into

b) Ability to attach a canvas to the DOM

I see that $view returns a div with a class name. What is the right way to get or attach a canvas to a view?

Thanks,
Brett

Answering my own question in case it helps others:

I just added my own canvas to the view’s div:

this.$view.appendChild(myCanvasElement)