mirror of
https://github.com/status-im/MyCrypto.git
synced 2025-01-25 18:38:51 +00:00
7fe2888633
* Create reusable password toggle component, convert private key and mnemonic to it. * Convert keystore modal to togglable password. * Remove the restore keystore tab code (defunct). * Replace wallet info with togglable password. Allow for controlled togglable password. * Convert last password component (generate) and cleanup unneeded files and styles.
18 lines
496 B
TypeScript
18 lines
496 B
TypeScript
import { default as ENS } from './ENS';
|
|
import { default as GenerateWallet } from './GenerateWallet';
|
|
import { default as Help } from './Help';
|
|
import { default as SendTransaction } from './SendTransaction';
|
|
import { default as Swap } from './Swap';
|
|
import { default as ViewWallet } from './ViewWallet';
|
|
import { default as SignAndVerifyMessage } from './SignAndVerifyMessage';
|
|
|
|
export default {
|
|
ENS,
|
|
GenerateWallet,
|
|
Help,
|
|
SendTransaction,
|
|
Swap,
|
|
ViewWallet,
|
|
SignAndVerifyMessage
|
|
};
|