2017-06-06 17:19:12 -04:00
|
|
|
import React from "react";
|
|
|
|
import { connect } from "react-redux";
|
2017-09-04 23:05:41 +05:30
|
|
|
import { doNavigate } from "actions/navigation";
|
2017-06-06 17:19:12 -04:00
|
|
|
import TransactionList from "./view";
|
2017-05-10 20:59:47 -04:00
|
|
|
|
2017-09-04 23:05:41 +05:30
|
|
|
const perform = dispatch => ({
|
|
|
|
navigate: (path, params) => dispatch(doNavigate(path, params)),
|
|
|
|
});
|
|
|
|
|
|
|
|
export default connect(null, perform)(TransactionList);
|