// FileTable.tsx "use client"; import { Button } from "@/components/ui/button"; import { createClient } from "@/utils/supabase/client"; import { FileCheck } from "lucide-react"; export default function ExampleDoc() { const supabase = createClient(); const inspectItem = () => { const { data } = supabase.storage .from("example") .getPublicUrl("example.pdf"); window.open(`${data.publicUrl}`, "_blank"); }; return ( ); }