import React from 'react'; import { Link } from 'react-router'; export default class EntryListing extends React.Component { render() { const { collection, entries } = this.props; const name = collection.get('name'); return

Listing entries!

{entries.map((entry) => { const path = `/collections/${name}/entries/${entry.get('slug')}`; return

{entry.getIn(['data', 'title'])}

; })}
; } }