export default function Item({ bookmark, target = "_blank" }) { const { hostname } = new URL(bookmark.href); return (
  • {bookmark.abbr}
    {bookmark.name}
    {hostname}
  • ); }