import React from 'react'; import Button from './Button'; export default function(props) { const latest = props.latest || []; const latestElements = latest.map(item => { const created = new Date(item.created); const hrefId = `#item-${item.id}`; return (
  • props.onSelect(item)}>{created.toLocaleString()}
  • ); }); return (

    Vergangene Briefe:

    ); }