// BookmarkPage.js import React from "react"; const dummyBookmarks = [ { id: 1, title: "Favorite Programming Language?", description: "Vote for your favorite programming language among the listed options.", }, { id: 2, title: "Best Framework for Web Development?", description: "Share your thoughts on the best framework for web development.", }, { id: 3, title: "Favorite Food?", description: "What's your favorite food? Vote and see the results.", }, ]; function Bookmark() { return (

Bookmarked Polls

{dummyBookmarks.map((bookmark, index) => ( ))}
# Title Description Actions
{index + 1} {bookmark.title} {bookmark.description}
); } export default Bookmark;