This commit is contained in:
Cássio Zen 2016-08-01 16:09:26 -03:00
parent 5aea0f5f81
commit f5f9000303
2 changed files with 1 additions and 3 deletions

View File

@ -6,7 +6,6 @@ export default class ImageCard extends React.Component {
render() {
const { onClick, onImageLoaded, image, text, description } = this.props;
console.log(this.props)
return (
<Card onClick={onClick} className={styles.root}>
<img src={image} onLoad={onImageLoaded} />

View File

@ -4,7 +4,6 @@ import Bricks from 'bricks.js';
import history from '../routing/history';
import Cards from './Cards';
import _ from 'lodash';
import styles from './EntryListing.css'
export default class EntryListing extends React.Component {
constructor(props) {
@ -77,7 +76,7 @@ export default class EntryListing extends React.Component {
const { collection, entries } = this.props;
const name = collection.get('name');
return <div className={styles.root}>
return <div>
<h1>Listing {name}</h1>
<div ref={(c) => this._entries = c}>
{entries.map((entry) => {