diff options
| author | dujinkim <dujin.kim@dtsolution.co.kr> | 2025-07-01 11:47:47 +0000 |
|---|---|---|
| committer | dujinkim <dujin.kim@dtsolution.co.kr> | 2025-07-01 11:47:47 +0000 |
| commit | 4c15b99d9586aa48693213c78c02fba4639ebb85 (patch) | |
| tree | ef48f45deeb36f499b01851870f6077c8621f396 /lib/information/table/information-table-toolbar-actions.tsx | |
| parent | 795b4915069c44f500a91638e16ded67b9e16618 (diff) | |
(최겸) 인포메이션 기능 수정
Diffstat (limited to 'lib/information/table/information-table-toolbar-actions.tsx')
| -rw-r--r-- | lib/information/table/information-table-toolbar-actions.tsx | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/lib/information/table/information-table-toolbar-actions.tsx b/lib/information/table/information-table-toolbar-actions.tsx deleted file mode 100644 index 5d8fff3a..00000000 --- a/lib/information/table/information-table-toolbar-actions.tsx +++ /dev/null @@ -1,25 +0,0 @@ -"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<PageInformation>
- onAdd: () => void
-}
-
-export function InformationTableToolbarActions({
- onAdd,
-}: InformationTableToolbarActionsProps) {
- return (
- <div className="flex items-center gap-2">
- <Button size="sm" onClick={onAdd}>
- <Plus className="mr-2 size-4" aria-hidden="true" />
- 인포메이션 추가
- </Button>
- </div>
- )
-}
\ No newline at end of file |
