This commit is contained in:
Sean Yesmunt 2017-12-11 18:50:22 -05:00
parent 33e49d86cc
commit ec2172fbae

View file

@ -1,9 +1,14 @@
// @flow
import React from "react"; import React from "react";
import Link from "component/link"; import Link from "component/link";
import { CreditAmount } from "component/common"; import { CreditAmount } from "component/common";
const RewardSummary = props => { type Props = {
const { balance, unclaimedRewardAmount } = props; unclaimedRewardAmount: number,
}
const RewardSummary = (props: Props) => {
const { unclaimedRewardAmount } = props;
return ( return (
<section className="card"> <section className="card">