Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | import { SettingsLayout } from './components/settings-layout'; import { SettingsAppearance } from './settings-appearance'; import { SettingsDiagnostics } from './settings-diagnostics'; import { SettingsManageNodes } from './settings-manage-nodes'; import { SettingsResetWallet } from './settings-reset-wallet'; import routes from '@constants/routes.json'; import { useBackButton } from '@hooks/use-back-url'; import React from 'react'; export const Settings = () => { useBackButton(routes.HOME); return ( <SettingsLayout> <SettingsManageNodes /> <SettingsAppearance /> <SettingsDiagnostics /> <SettingsResetWallet /> </SettingsLayout> ); }; |