diff --git a/components/bookmark.tsx b/components/bookmark.tsx new file mode 100644 index 0000000..fff9160 --- /dev/null +++ b/components/bookmark.tsx @@ -0,0 +1,22 @@ +import { HeartIcon } from "@heroicons/react/24/solid" +import type { BookmarkType } from "../app/bookmarks/schema" + +export function Bookmark(bookmark: BookmarkType) { + return ( +
+ + + {bookmark.title} - {bookmark.url} + +
+ ) +}