mirror of
https://github.com/bellingcat/ukraine-timemap.git
synced 2026-06-12 05:18:34 +03:00
20 lines
399 B
JavaScript
20 lines
399 B
JavaScript
import React from 'react';
|
|
|
|
import copy from '../../js/data/copy.json';
|
|
|
|
const CardSummary = ({ language, description, isHighlighted }) => {
|
|
|
|
const summary = copy[language].cardstack.description;
|
|
|
|
return (
|
|
<div className="card-row summary">
|
|
<div className="card-cell">
|
|
<h4>{summary}</h4>
|
|
<p>{description}</p>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export default CardSummary;
|