import { Sandbox } from "@/lib/types" import { Table, TableBody, TableCaption, TableCell, TableHead, TableHeader, TableRow, } from "@/components/ui/table" import Image from "next/image" import Button from "../ui/customButton" import { ChevronRight } from "lucide-react" import Avatar from "../ui/avatar" export default function DashboardSharedWithMe({ sandboxes, }: { sandboxes: Sandbox[] }) { return (
Shared With Me
Sandbox Name Shared By Opened {sandboxes.map((sandbox) => (
{sandbox.name}
Ishaan Dey
{new Date().toLocaleDateString()}
))}
) }