Skip to content

Commit

Permalink
BookmarkData
Browse files Browse the repository at this point in the history
  • Loading branch information
tassyguy committed Oct 19, 2023
1 parent 2602b44 commit db5e5bc
Showing 1 changed file with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,14 @@ interface BookmarkContainerProps {
}[];
}

interface BookmarkData {
siteName: string;
icon: string;
url: string;
description: string;
bookmarkGroup: string;
}

const BookmarkContainer: React.FC<BookmarkContainerProps> = ({ bookmarkData }) => {
// Group bookmarks by "bookmarkGroup" field
const groupedBookmarks: { [key: string]: BookmarkData[] } = {};
Expand Down

0 comments on commit db5e5bc

Please sign in to comment.