From 5adc1df95f80fbec7a0b5bbee15448b10d5aec3a Mon Sep 17 00:00:00 2001 From: 0-Zz-ang Date: Sun, 17 Aug 2025 23:05:19 +0900 Subject: (박서영)evcp/document-list-only, evcp/vendor-data 생성 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../document-lists/vendor-doc-list-client-evcp.tsx | 35 ++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 components/document-lists/vendor-doc-list-client-evcp.tsx (limited to 'components/document-lists/vendor-doc-list-client-evcp.tsx') diff --git a/components/document-lists/vendor-doc-list-client-evcp.tsx b/components/document-lists/vendor-doc-list-client-evcp.tsx new file mode 100644 index 00000000..cc9b6804 --- /dev/null +++ b/components/document-lists/vendor-doc-list-client-evcp.tsx @@ -0,0 +1,35 @@ +"use client" +import * as React from "react" + +import { InformationButton } from "@/components/information/information-button" + +interface VendorDocumentsClientEvcpProps { + children: React.ReactNode +} + +export default function VendorDocumentListClientEvcp({ + children, +}: VendorDocumentsClientEvcpProps) { + return ( + <> + {/* 상단 영역: 타이틀만 표시 */} +
+ {/* 왼쪽: 타이틀 & 설명 */} +
+
+

전체 문서 리스트 관리

+ +
+

+ 전체 계약 대상 문서를 관리하고 진행 상황을 추적할 수 있습니다. +

+
+
+ + {/* 문서 목록/테이블 영역 */} +
+ {children} +
+ + ) +} -- cgit v1.2.3