I have a React component which list items from the Item component.
Below you can see how it looks.
const ListHolder = () => (
<div>
<div className="panel">
<div className="panel-heading">
<h3 className="panel-title">List Title</h3>
</div>
<div className="panel-body">
<Item
title="A Title"
desc="Desc 1."
/>
<Item
title="Another Title"
desc="Desc 2."
/>
<Item
title="Some of title"
desc="Desc 3."
/>
</div>
</div>
</div>
);
export default ListHolder;
Item components are currently hardcoded.
How can I populate / insert the data from some Json data?