1
0
Fork 0
mirror of https://github.com/pawelmalak/flame.git synced 2025-07-23 21:29:37 +02:00

Adding Categories and Bookmarks using form

This commit is contained in:
unknown 2021-05-24 12:35:54 +02:00
parent 38edb76929
commit c145888aec
7 changed files with 116 additions and 13 deletions

View file

@ -14,7 +14,7 @@ const BookmarkCard = (props: ComponentProps): JSX.Element => {
<a
href={`http://${bookmark.url}`}
target='blank'
key={bookmark.id}>
key={`bookmark-${bookmark.id}`}>
{bookmark.name}
</a>
))}