import { Link } from "@remix-run/react"; import { PencilIcon } from "lucide-react"; import { Button } from "~/components/ui/button"; import type { Anggota } from "~/types/api/anggota"; interface CellActionProps { data: Anggota; } export function CellAction({ data }: CellActionProps) { return ( <> ); }