mirror of
https://github.com/marko-js/marko.git
synced 2025-12-08 19:26:05 +00:00
25 lines
538 B
JavaScript
25 lines
538 B
JavaScript
exports.templateData = {
|
|
"accounts": [
|
|
{
|
|
"balance": 0,
|
|
"balanceFormatted": "$0.00",
|
|
"status": "open"
|
|
},
|
|
{
|
|
"balance": 10,
|
|
"balanceFormatted": "$10.00",
|
|
"status": "closed"
|
|
},
|
|
{
|
|
"balance": -100,
|
|
"balanceFormatted": "$-100.00",
|
|
"status": "suspended"
|
|
},
|
|
{
|
|
"balance": 999,
|
|
"balanceFormatted": "$999.00",
|
|
"status": "open"
|
|
}
|
|
]
|
|
};
|