"use client"; import { useState } from "react"; import Link from "next/link"; import { Icons } from "../shared/icons"; export default function EmailManagerInnovate() { const [viewMode, setViewMode] = useState("inbox"); // Toggle between inbox and sent return (
Try it out
Email Manager
{/* Search Bar */}
{/* Email Card */}

{viewMode === "inbox" ? "example@gmail.com" : "app@wr.do"}

{viewMode === "inbox" ? "app@wr.do" : "example@gmail.com"}

{viewMode === "inbox" ? "5.2K" : "3.8K"}{" "} emails

); }