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 /components/items-tech/item-tech-container.tsx | |
| parent | 4fb273b7fc85352183113f1240fc33f7d6c98328 (diff) | |
| parent | cee824301521c181000d501c0236db99079bbae4 (diff) | |
(merge) merged local commits
Diffstat (limited to 'components/items-tech/item-tech-container.tsx')
| -rw-r--r-- | components/items-tech/item-tech-container.tsx | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/components/items-tech/item-tech-container.tsx b/components/items-tech/item-tech-container.tsx index c09f684a..260f3e64 100644 --- a/components/items-tech/item-tech-container.tsx +++ b/components/items-tech/item-tech-container.tsx @@ -11,7 +11,7 @@ import { DropdownMenuItem,
DropdownMenuTrigger,
} from "@/components/ui/dropdown-menu"
-
+import { InformationButton } from "@/components/information/information-button"
interface ItemType {
id: string
name: string
@@ -56,7 +56,10 @@ export function ItemTechContainer({ <div className="flex items-center justify-between">
{/* 왼쪽: 타이틀 & 설명 */}
<div>
- <h2 className="text-2xl font-bold tracking-tight">자재 관리</h2>
+ <div className="flex items-center gap-2">
+ <h2 className="text-2xl font-bold tracking-tight">자재 관리</h2>
+ <InformationButton pagePath="evcp/items-tech" />
+ </div>
<p className="text-muted-foreground">
조선 및 해양 자재를 등록하고 관리할 수 있습니다.
</p>
|
