Last active
January 25, 2017 03:32
-
-
Save ryanjyost/ed34e0c68c73cefc4e95ce72192c9cb3 to your computer and use it in GitHub Desktop.
rainy-day-fund/src/components/TotalExpenses.js
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //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