mirror of
https://github.com/bellingcat/ukraine-timemap.git
synced 2026-06-11 12:58:35 +03:00
16 lines
405 B
JavaScript
16 lines
405 B
JavaScript
import React from 'react';
|
|
|
|
import CardNarrativeLink from './CardNarrativeLink';
|
|
|
|
const CardNarrative = (props) => (
|
|
<div className="card-row">
|
|
<h4>Connected events</h4>
|
|
<div className="card-cell">
|
|
<p>← <CardNarrativeLink {...props} event={props.next}/></p>
|
|
<p>→ <CardNarrativeLink {...props} event={props.prev} /></p>
|
|
</div>
|
|
</div>
|
|
);
|
|
|
|
export default CardNarrative;
|