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