import React from "react"; type NewsCardProps = { title: string; description: string; category: string; date: string; image: string; }; const NewsCard = ({ title, description, category, date, image }: NewsCardProps) => (

{title}

{description}
{category}
{date}
); export default NewsCard;