* Add wallet debug page * Show key hash information * Show last key update * Show last wallet update * Show last device key update
16 lines
495 B
JavaScript
16 lines
495 B
JavaScript
import { getGetServerSideProps } from '@/api/ssrApollo'
|
|
import { WalletLayout, WalletLayoutHeader, WalletDebugSettings } from '@/wallets/client/components'
|
|
|
|
export const getServerSideProps = getGetServerSideProps({})
|
|
|
|
export default function WalletDebug () {
|
|
return (
|
|
<WalletLayout>
|
|
<div className='py-5 mx-auto w-100' style={{ maxWidth: '600px' }}>
|
|
<WalletLayoutHeader>wallet debug</WalletLayoutHeader>
|
|
<WalletDebugSettings />
|
|
</div>
|
|
</WalletLayout>
|
|
)
|
|
}
|