diff options
| author | joonhoekim <26rote@gmail.com> | 2025-07-02 00:17:29 +0000 |
|---|---|---|
| committer | joonhoekim <26rote@gmail.com> | 2025-07-02 00:17:29 +0000 |
| commit | 6a9ca20deddcdcbe8495cf5a73ec7ea5f53f9b55 (patch) | |
| tree | f48f3a84174f0be560fdf5ed7797fffd8a412a91 /lib/information/table/information-table-toolbar-actions.tsx | |
| parent | 4fb273b7fc85352183113f1240fc33f7d6c98328 (diff) | |
| parent | cee824301521c181000d501c0236db99079bbae4 (diff) | |
(merge) merged local commits
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 |
