Because many times performance is not an issue, I find myself doing things like this: ``` js React.DOM.ul(null, items.map(function(item) { return React.DOM.li({key: Math.random()}, item.property) }) ``` Would make sense to have something like this by default?