update src/components/CustomSelectBox/index.js, src/components/Modal/index.js, src/components/Tabbar/index.js and src/components/Tavabee/index.js ادامه کار
parent
5027ead5eb
commit
f331ab5c80
5 changed files with 103 additions and 13 deletions
@ -0,0 +1,59 @@ |
|||||||
|
import React from "react"; |
||||||
|
import CustomSelectBox from "../CustomSelectBox"; |
||||||
|
|
||||||
|
const Condition = () => { |
||||||
|
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="font-bold text-center p-4 rounded-sm border border-[#DBDBDB] text-[#333333]"> |
||||||
|
اینجا قرار است بیام از react-monaco-editor استفاده کنم{" "} |
||||||
|
</div> |
||||||
|
</div> |
||||||
|
<div className="flex-grow flex-1 flex flex-col pr-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" }, |
||||||
|
]} |
||||||
|
/> |
||||||
|
<CustomSelectBox |
||||||
|
options={[ |
||||||
|
{ |
||||||
|
title: "رفرنس هایی که شناسه ی آن ها ظروری است", |
||||||
|
}, |
||||||
|
{ title: "شماره 1" }, |
||||||
|
{ title: "شماره 2" }, |
||||||
|
{ title: "شماره 3" }, |
||||||
|
]} |
||||||
|
/> |
||||||
|
<CustomSelectBox |
||||||
|
options={[ |
||||||
|
{ |
||||||
|
title: "رفرنس هایی که باید در یک گردش کار یکتا باشند", |
||||||
|
}, |
||||||
|
{ title: "شماره 1" }, |
||||||
|
{ title: "شماره 2" }, |
||||||
|
{ title: "شماره 3" }, |
||||||
|
]} |
||||||
|
/> |
||||||
|
</div> |
||||||
|
</div> |
||||||
|
</div> |
||||||
|
); |
||||||
|
}; |
||||||
|
|
||||||
|
export default Condition; |
Loading…
Reference in new issue