Is there a way to combine polymer firebase-collection with iron-list?
I'm able to show my data with firebase-collection, but I also want to use iron-list to style my elements...
<firebase-collection data="{{games}}"
location="url">
</firebase-collection>
<template is="dom-repeat" items="{{games}}" as="game">
<div>
<span>{{game.home}}</span>
<span class="game_score">
<span>{{game.home_score}}</span> - <span>{{game.away_score}}</span>
</span>
<span>{{game.away}}</span>
</div>
</template>