Skip to content

Instantly share code, notes, and snippets.

@ryanjyost
Last active January 25, 2017 03:32
Show Gist options
  • Select an option

  • Save ryanjyost/ed34e0c68c73cefc4e95ce72192c9cb3 to your computer and use it in GitHub Desktop.

Select an option

Save ryanjyost/ed34e0c68c73cefc4e95ce72192c9cb3 to your computer and use it in GitHub Desktop.
rainy-day-fund/src/components/TotalExpenses.js
//src/components/TotalExpenses.js
import React from 'react';
import {formatDollarValues, calcTotalExpenses} from '../helpers'
const TotalExpenses = ({expenses}) => {
return (
<div id="TotalExpenses">
<h3>Total Monthly Expenses</h3>
<h3 id="expenses-total">
${' '}{formatDollarValues(calcTotalExpenses(expenses))}
</h3>
</div>
)
}
export default TotalExpenses;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment