diff options
Diffstat (limited to 'extension/src/Bookmark.tsx')
-rw-r--r-- | extension/src/Bookmark.tsx | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/extension/src/Bookmark.tsx b/extension/src/Bookmark.tsx index 5dc16b9..125344e 100644 --- a/extension/src/Bookmark.tsx +++ b/extension/src/Bookmark.tsx @@ -2,7 +2,7 @@ import BookmarkTreeNode = chrome.bookmarks.BookmarkTreeNode; function Bookmark(props: {data: BookmarkTreeNode}) { return( - <a className="bookmark" href={props.data.url}> + <a className="bookmark" id = "draggable" href={props.data.url}> <img alt="Bookmark icon" src={faviconURL(props.data.url)}></img> <span>{props.data.title}</span> </a> @@ -20,4 +20,6 @@ function faviconURL(u: string | undefined) { return url.toString(); } + + export default Bookmark;
\ No newline at end of file |