"use client" import * as React from "react" import { type Table } from "@tanstack/react-table" import { Download, RefreshCcw, Upload } from "lucide-react" import { toast } from "sonner" import { exportTableToExcel } from "@/lib/export" import { Button } from "@/components/ui/button" import { ViewTagSubfields } from "@/db/schema/vendorData" interface ItemsTableToolbarActionsProps { table: Table } export function TagNumberingTableToolbarActions({ table }: ItemsTableToolbarActionsProps) { // 파일 input을 숨기고, 버튼 클릭 시 참조해 클릭하는 방식 const fileInputRef = React.useRef(null) return (
{/** 4) Export 버튼 */} {/** 4) Export 버튼 */}
) }