For example: ``` dot.each(this.values, (m)=>{ return dot.mount(new DisplayRow(m)); }) ``` Should be achievable with ``` dot.each(this.values, (m)=>{ return new DisplayRow(m); }) ```