2017-07-27 16:48:18 +02:00
|
|
|
import React from "react";
|
|
|
|
import { connect } from "react-redux";
|
2017-08-14 11:43:40 +02:00
|
|
|
import { doSendSupport } from "actions/claims";
|
2017-07-27 16:48:18 +02:00
|
|
|
import TipLink from "./view";
|
|
|
|
|
2017-07-27 22:15:13 +02:00
|
|
|
const select = state => ({});
|
2017-07-27 16:48:18 +02:00
|
|
|
|
|
|
|
const perform = dispatch => ({
|
2017-08-14 11:43:40 +02:00
|
|
|
sendSupport: (amount, claim_id) => dispatch(doSendSupport(amount, claim_id)),
|
2017-07-27 16:48:18 +02:00
|
|
|
});
|
|
|
|
|
2017-07-27 22:15:13 +02:00
|
|
|
export default connect(select, perform)(TipLink);
|