From d66d308169e559457878c02e3b0443da22693241 Mon Sep 17 00:00:00 2001 From: dujinkim Date: Tue, 1 Jul 2025 02:53:18 +0000 Subject: (최겸) 정보시스템 인포메이션 기능 개발 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../table/information-table-toolbar-actions.tsx | 25 ++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 lib/information/table/information-table-toolbar-actions.tsx (limited to 'lib/information/table/information-table-toolbar-actions.tsx') diff --git a/lib/information/table/information-table-toolbar-actions.tsx b/lib/information/table/information-table-toolbar-actions.tsx new file mode 100644 index 00000000..5d8fff3a --- /dev/null +++ b/lib/information/table/information-table-toolbar-actions.tsx @@ -0,0 +1,25 @@ +"use client" + +import { type Table } from "@tanstack/react-table" +import { Plus } from "lucide-react" + +import { Button } from "@/components/ui/button" +import type { PageInformation } from "@/db/schema/information" + +interface InformationTableToolbarActionsProps { + table: Table + onAdd: () => void +} + +export function InformationTableToolbarActions({ + onAdd, +}: InformationTableToolbarActionsProps) { + return ( +
+ +
+ ) +} \ No newline at end of file -- cgit v1.2.3