import React from "react"; import Link from "next/link"; import { Inbox } from "lucide-react"; import { Button } from "@/components/ui/button"; /** * ExplorerEmpty * * Friendly empty state with an optional "go up" action. * * @param {{ * title: string, * description: string, * upHref?: string|null * }} props */ export default function ExplorerEmpty({ title, description, upHref = null }) { return (
); }