mirror of
https://github.com/DI0IK/homepage-plus.git
synced 2025-07-15 01:10:35 +00:00
11 lines
289 B
JavaScript
11 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>
|
|
);
|
|
}
|