mirror of
https://github.com/status-im/MyCrypto.git
synced 2025-01-11 11:34:26 +00:00
d1a2c885a2
* PureComponent a ton of non-connected components. * Debounce gas price slider. Keep gas price in state to reflect changes immediately. * PureComponent balance sidebar and swap unconnected components. * Import correct component. * Move debouncing of gas slider to sagas via gasPriceInputIntent action. * Remove console log. * Remove leftover file from merge.
8 lines
175 B
TypeScript
8 lines
175 B
TypeScript
import React from 'react';
|
|
|
|
export class DigitalBitboxDecrypt extends React.PureComponent<{}, {}> {
|
|
public render() {
|
|
return <strong>Not yet implemented</strong>;
|
|
}
|
|
}
|