<div className="relative grid grid-cols-1 gap-4 ml-4 p-4 mb-8 w-full border rounded-lg bg-white shadow-lg">
<div className="relative flex gap-4">
<div className="flex flex-col w-full">
<div className="flex flex-row justify-between">
<p className=" relative text-xl whitespace-nowrap truncate overflow-hidden">
{comment.title}
</p>
</div>
<p className="text-dark text-sm">@{comment.createdBy}</p>
</div>
</div>
<p className="-mt-4 text-gray-500">{comment.content}</p>
</div>
Recent Posts
- HashMaps Unleashed: Recognizing Algorithm Patterns for Optimal Solutions
- Postorder Traversal of a Binary Tree: Understanding the Basics
- Longest Repeating Character Replacement – 424. LeetCode – Java
- Longest Substring Without Repeating Characters – 3. LeetCode – Java
- Strings vs. Integer Arrays: Decoding Their Unique Roles in LeetCode