You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
468 B
17 lines
468 B
import React from 'react'
|
|
import './Expenses.css'
|
|
import logo from '../assets/widget_logos/expenses_logo.png';
|
|
|
|
export default function Expenses() {
|
|
return (
|
|
<>
|
|
<div class="expenses_widget">
|
|
<h4 class="widget_header">This Month's Expenses</h4>
|
|
<img src={logo} />
|
|
<h1>$456.78</h1>
|
|
<h6>+ $359.97 (26%) last month (17%)</h6>
|
|
</div>
|
|
</>
|
|
|
|
)
|
|
} |