mirror of
https://github.com/status-im/MyCrypto.git
synced 2025-01-24 01:49:06 +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;
|
||
|
}
|