import React from "react"; function EmailApp() { // Lista fake de emails para exibir const emails = [ { id: 1, from: "Open source project public release", preview: "Hey John, bah kivu decrete epanorthotic unnotched...", time: "4:14 AM", starred: true, avatar: "https://i.pravatar.cc/40?img=1" }, { id: 2, from: "Ecommerce website Paypal integration", preview: "We will start the new application development soon...", time: "2:15 AM", starred: false, avatar: "https://i.pravatar.cc/40?img=2" }, { id: 3, from: "How To Set Intentions That Energize You", preview: "I will provide you more details after this Saturday...", time: "Yesterday", starred: false, avatar: "https://i.pravatar.cc/40?img=3" } ]; return ( <>

Email Application

An application for user to check email inbox

{/* Sidebar */}
  • 📥 Inbox
  • 📤 Sent
  • 📝 Draft
  • ⭐ Starred
  • 🚫 Spam
  • 🗑 Trash
Labels
  • 🏷 Product
  • 💼 Work
  • 📌 Misc
  • 👨‍👩‍👧 Family
  • 🎨 Design
{/* Emails */}
{emails.map((mail) => (
avatar
{mail.from}

{mail.preview}

{mail.starred ? "⭐" : "☆"}
{mail.time}
))}
); } export default EmailApp;