mirror of
https://github.com/status-im/MyCrypto.git
synced 2025-02-11 02:27:04 +00:00
6 lines
131 B
TypeScript
6 lines
131 B
TypeScript
|
import { AppState } from 'reducers';
|
||
|
|
||
|
export function getTransactionDatas(state: AppState) {
|
||
|
return state.transactions.txData;
|
||
|
}
|