mirror of
https://github.com/acedanger/finance.git
synced 2025-12-05 22:50:12 -08:00
13 lines
321 B
Plaintext
13 lines
321 B
Plaintext
---
|
|
import type { Account } from '../types';
|
|
import { formatCurrency } from '../utils';
|
|
|
|
interface Props {
|
|
account: Account;
|
|
}
|
|
const { account } = Astro.props;
|
|
---
|
|
<div class="account-summary">
|
|
<h4>Account Summary</h4>
|
|
<p>Balance: <span id="account-balance">{formatCurrency(account.balance)}</span></p>
|
|
</div> |