parent
f331ab5c80
commit
fca56638ec
2 changed files with 54 additions and 1 deletions
@ -0,0 +1,52 @@ |
||||
import React from "react"; |
||||
import CustomSelectBox from "../CustomSelectBox"; |
||||
|
||||
const Settingss = () => { |
||||
return ( |
||||
<div className="w-full flex flex-row items-center justify-between mx-auto rounded-sm shadow-sm divide-x-2 divide-[#E3E3E3] divide-x-reverse"> |
||||
<div className="flex-grow flex-1 flex flex-col pl-5"> |
||||
<div className="flex flex-col gap-y-7"> |
||||
<CustomSelectBox |
||||
options={[ |
||||
{ title: "نام فرآیند" }, |
||||
{ title: "شماره 1" }, |
||||
{ title: "شماره 2" }, |
||||
{ title: "شماره 3" }, |
||||
]} |
||||
/> |
||||
<CustomSelectBox |
||||
options={[ |
||||
{ title: "انتخاب تابع" }, |
||||
{ title: "شماره 1" }, |
||||
{ title: "شماره 2" }, |
||||
{ title: "شماره 3" }, |
||||
]} |
||||
/> |
||||
</div> |
||||
</div> |
||||
<div className="flex-grow flex-1 flex flex-col pr-5"> |
||||
<p className="mb-4 mt-2 font-bold text-[#00253A] text-sm">تابع پایان</p> |
||||
<div className="flex flex-col gap-y-7"> |
||||
<CustomSelectBox |
||||
options={[ |
||||
{ title: "انتخاب سرویس" }, |
||||
{ title: "شماره 1" }, |
||||
{ title: "شماره 2" }, |
||||
{ title: "شماره 3" }, |
||||
]} |
||||
/> |
||||
<CustomSelectBox |
||||
options={[ |
||||
{ title: "انتخاب تابع" }, |
||||
{ title: "شماره 1" }, |
||||
{ title: "شماره 2" }, |
||||
{ title: "شماره 3" }, |
||||
]} |
||||
/> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
); |
||||
}; |
||||
|
||||
export default Settingss; |
Loading…
Reference in new issue