"use client" import * as React from "react" import { type Table } from "@tanstack/react-table" import { Download, Upload } from "lucide-react" import { toast } from "sonner" import { exportTableToExcel } from "@/lib/export" import { Button } from "@/components/ui/button" import { RfqWithAll } from "../types" interface RfqsTableToolbarActionsProps { table: Table } export function RfqsVendorTableToolbarActions({ table }: RfqsTableToolbarActionsProps) { return (
{/** 4) Export 버튼 */}
) }