mirror of
https://github.com/status-im/nimbus-gui.git
synced 2025-02-03 07:03:30 +00:00
feat(right-manage-settings): use new components
This commit is contained in:
parent
3e8217adc0
commit
aaa6b4c659
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user