"use client" import * as React from "react" import { type Table } from "@tanstack/react-table" import { Download, Upload, Check } from "lucide-react" import { toast } from "sonner" import { exportTableToExcel } from "@/lib/export" import { Button } from "@/components/ui/button" import { Vendor } from "@/db/schema/vendors" interface VendorsTableToolbarActionsProps { table: Table } export function VendorsTableToolbarActions({ table }: VendorsTableToolbarActionsProps) { // 파일 input을 숨기고, 버튼 클릭 시 참조해 클릭하는 방식 return (
{/** 4) Export 버튼 */}
) }