Interface NewsCardProperty

Interface that defines property for NewsCard component

<NewsCard :news-entry="articleData" :is-new="isFirstElement(articleData)" />
interface NewsCardProperty {
    isNew: boolean;
    newsEntry: NewsEntry;
}

Properties

Properties

isNew: boolean

Mark the entry new

newsEntry: NewsEntry

Data of news