The two main props to show the content of your entry are title and description.
It’s also possible to pass the Entry’s content type in the contentType prop.
To show a badge with the status of the entry,
you can pass one of "archived", "changed", "deleted", "draft", "new", or "published" to the status prop.
Basic usage
Author
published
John Doe
Research and recommendations for modern stack websites.
functionEntryCardExample(){
return(
<EntryCard
status="published"
contentType="Author"
title="John Doe"
description="Research and recommendations for modern stack websites."
Like the Card component, it’s possible to pass a custom badge using the badge prop if the entity has different statuses than
"archived", "changed", "deleted", "draft", "new", or "published". In this case the status prop will be ignored.
Author
custom status
John Doe
Research and recommendations for modern stack websites.
functionEntryCardCustomBadgeExample(){
return(
<EntryCard
contentType="Author"
title="John Doe"
description="Research and recommendations for modern stack websites."