"use client" import * as React from "react" import { type Table } from "@tanstack/react-table" import { Download, RefreshCcw } from "lucide-react" import { exportTableToExcel } from "@/lib/export" import { Button } from "@/components/ui/button" import { POADetail } from "@/db/schema/contract" interface ItemsTableToolbarActionsProps { table: Table } export function PoaTableToolbarActions({ table }: ItemsTableToolbarActionsProps) { return (
{/** Refresh 버튼 */} {/** Export 버튼 */}
) }