mirror of
https://github.com/status-im/MyCrypto.git
synced 2025-01-09 18:45:38 +00:00
84bae60c02
* Make generic modal * Allow generic modals to be injected into send button component * Refactor generate transaction, cleanup transaction sagas, simplify signing process * Get passing unit tests * Make previous test more comprehensive * Fix ts errors
14 lines
494 B
TypeScript
14 lines
494 B
TypeScript
import { GenerateTransactionFactory } from './GenerateTransactionFactory';
|
|
import React from 'react';
|
|
import translate from 'translations';
|
|
|
|
export const GenerateTransaction: React.SFC<{}> = () => (
|
|
<GenerateTransactionFactory
|
|
withProps={({ disabled, isWeb3Wallet, onClick }) => (
|
|
<button disabled={disabled} className="btn btn-info btn-block" onClick={onClick}>
|
|
{isWeb3Wallet ? translate('Send to MetaMask / Mist') : translate('DEP_signtx')}
|
|
</button>
|
|
)}
|
|
/>
|
|
);
|