Color config added

This commit is contained in:
CHIEFSOFT\ameye
2025-09-14 07:24:48 -04:00
parent 3f5ae4685e
commit c25acecb1a
2 changed files with 10 additions and 1 deletions
@@ -0,0 +1,6 @@
const ColorStyleConfigure =()=>{
return <>COLOR CONFIG</>
}
export default ColorStyleConfigure
@@ -7,6 +7,7 @@ import {IoMdArrowDropdown} from 'react-icons/io';
import queryKeys from '../../../services/queryKeys'; import queryKeys from '../../../services/queryKeys';
import sortObjectByListOrder from '../../../helpers/sortObjectByListOrder'; import sortObjectByListOrder from '../../../helpers/sortObjectByListOrder';
import URLConfiguration from "./URLConfiguration"; import URLConfiguration from "./URLConfiguration";
import ColorStyleConfigure from "./ColorStyleConfigure";
const GeneralTab = memo(({ const GeneralTab = memo(({
name = 'Full Name', name = 'Full Name',
@@ -117,7 +118,9 @@ const GeneralTab = memo(({
{(tabKey === 'url_config_tab') && <URLConfiguration name={name} data={sortedData} {(tabKey === 'url_config_tab') && <URLConfiguration name={name} data={sortedData}
isCustom={isCustom} isCustom={isCustom}
productData={productData}/>} productData={productData}/>}
{(tabKey==='color_scheme_tab')} && <>This is Color Tab</>} {(tabKey === 'color_scheme_tab') && <ColorStyleConfigure name={name} data={sortedData}
isCustom={isCustom}
productData={productData}/>}
</> </>
: :
<div className="page-account-form"> <div className="page-account-form">