{item.title}
+ {/* */} +Published on {dayjs(item.published_date).format('MMMM Do YYYY')}
)} -by {getAuthorsList(item.authors)}
+by {getAuthorsList(item.authors)}
*/} ), }, { - title: 'Categories', - dataIndex: 'categories', + title: 'Published Date', + dataIndex: ['published_date', 'updated_at'], key: 'categories', ellipsis: true, - render: (item) => { - return item.length > 0 ? getCategoryList(item) : null; - }, - }, - { - title: 'Tags', - dataIndex: 'tags', - key: 'tags', - ellipsis: true, - render: (item) => { - return getTagList(item); + width: 200, + render: (_, item) => { + return ( + item && ( + <> +