mirror of
https://github.com/status-im/MyCrypto.git
synced 2025-02-10 18:16:45 +00:00
* Component layer and routing for transaction status. * Initial start on redux for transactions. * Initial crack at reducer / actions / saga for transactions. * Finish off check transaction saga, reducer, component, and page.
6 lines
131 B
TypeScript
6 lines
131 B
TypeScript
import { AppState } from 'reducers';
|
|
|
|
export function getTransactionDatas(state: AppState) {
|
|
return state.transactions.txData;
|
|
}
|