import React from 'react'; import DetailsCard from './details-card'; export default class Details extends React.Component { // render all details as cards, later cards go on top render() { const details = this.props.details.toIndexedSeq(); return (
{details.map((obj, index) => { return ( ); })}
); } }