import { Table, TableBody, TableCell, TableHead, TableHeader, TableRow, } from "@/components/ui/table" import { ChevronRight } from "lucide-react" import Image from "next/image" import Link from "next/link" import Avatar from "../ui/avatar" import Button from "../ui/customButton" export default function DashboardSharedWithMe({ shared, }: { shared: { id: string name: string type: "react" | "node" author: string sharedOn: Date }[] }) { return (