📌fix: 이미지 불러오기 팝업 닫기 버튼 추가

This commit is contained in:
yoosangwook 2025-02-10 09:49:51 +09:00
parent 6aa658a1a5
commit 10e324b3ed

View File

@ -76,7 +76,14 @@ export default function ImgLoad() {
<div className={`modal-pop-wrap r`}>
<div className="modal-head modal-handle">
<h1 className="title">{getMessage('common.input.file')}</h1>
{/* <button className="modal-close">닫기</button> */}
<button
className="modal-close"
onClick={() => {
setFloorPlanState({ ...floorPlanState, refFileModalOpen: false })
}}
>
닫기
</button>
</div>
<div className="modal-body">
<div className="img-flex-box">
@ -154,6 +161,7 @@ export default function ImgLoad() {
{/* <button className="btn-frame modal act" onClick={() => handleCanvasToPng(2)}></button> */}
</div>
</div>
<div className="modal-foot modal-handle"></div>
</div>
</WithDraggable>
)