mirror of
https://github.com/gethomepage/homepage.git
synced 2025-12-07 09:35:54 -08:00
12 lines
289 B
JavaScript
12 lines
289 B
JavaScript
import Item from "components/bookmarks/item";
|
|
|
|
export default function List({ bookmarks, target }) {
|
|
return (
|
|
<ul className="mt-3 flex flex-col">
|
|
{bookmarks.map((bookmark) => (
|
|
<Item key={bookmark.name} bookmark={bookmark} target={target} />
|
|
))}
|
|
</ul>
|
|
);
|
|
}
|