"use client" import * as React from "react" import { type Table } from "@tanstack/react-table" import { Download } from "lucide-react" import { exportTableToExcel } from "@/lib/export" import { Button } from "@/components/ui/button" interface TechVendorRfqHistoryRow { id: number; rfqCode: string | null; description: string | null; projectCode: string | null; projectName: string | null; status: string; totalAmount: string | null; currency: string | null; dueDate: Date | null; createdAt: Date; quotationCode: string | null; submittedAt: Date | null; } interface TechVendorRfqHistoryTableToolbarActionsProps { table: Table } export function TechVendorRfqHistoryTableToolbarActions({ table, }: TechVendorRfqHistoryTableToolbarActionsProps) { return (
{/** Export 버튼 */}
) }