2025-02-19 09:22:30 +09:00

32 lines
1.2 KiB
JavaScript

import WithDraggable from "@/components/common/draggable/withDraggable";
import Qselect from "@/components/common/select/Qselect";
const SelectOption = [
{name: '53A',}, {name: '53A'}, {name: '53A'}, {name: '53A'}
]
export default function RoofSelect(){
return(
<WithDraggable isShow={true}>
<div className={`modal-pop-wrap xxxm`}>
<div className="modal-head handle">
<h1 className="title">変更 </h1>
<button className="modal-close">닫기</button>
</div>
<div className="modal-body">
<div className="left-bar handle"></div>
<div className="right-bar handle"></div>
<div className="slope-wrap">
<div className="grid-select">
<Qselect title={'53A'} option={SelectOption}/>
</div>
</div>
<div className="grid-btn-wrap">
<button className="btn-frame modal act">ストレージ</button>
</div>
</div>
<div className="modal-foot handle"></div>
</div>
</WithDraggable>
)
}