Skip to content

Instantly share code, notes, and snippets.

@TRahulSam1997
Created April 4, 2021 03:33
Show Gist options
  • Save TRahulSam1997/5bc1e7f65adac0015e7932663c898407 to your computer and use it in GitHub Desktop.
Save TRahulSam1997/5bc1e7f65adac0015e7932663c898407 to your computer and use it in GitHub Desktop.
import React from 'react'
export default function DataItem({ dataItem }) {
return (
<div>
<div className="m-auto mt-10 py-3">
<div className="bg-white shadow-2xl" >
<div>
<img src={dataItem.fields.image} />
</div>
<div className="px-4 py-2 mt-2 bg-white">
<h2 className="font-bold text-2xl text-gray-800">{dataItem.fields.title}</h2>
<p className="sm:text-sm text-xs text-gray-700 px-1 mr-1 my-3">{dataItem.fields.description}</p>
</div>
</div>
</div>
</div>
)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment