feat(right-manage-settings): use new components

This commit is contained in:
RadoslavDimchev 2024-02-19 21:56:09 +02:00 committed by Emil Ivanichkov
parent 3e8217adc0
commit aaa6b4c659

View File

@ -1,11 +1,19 @@
import DefaultPanel from './Panels/DefaultPanel'
import DepositPanel from './Panels/DepositPanel'
import MigratePanel from './Panels/MigratePanel'
const RightManageSettings = () => {
const isDefault = false
// const isMigrate = true
// const isDeposit = false
const isMigrate = true
const isDeposit = false
return <>{isDefault && <DefaultPanel />}</>
return (
<>
{isDefault && <DefaultPanel />}
{isMigrate && <MigratePanel />}
{isDeposit && <DepositPanel />}
</>
)
}
export default RightManageSettings