21 lines
463 B
TypeScript
21 lines
463 B
TypeScript
|
|
export const REPORT = [
|
||
|
|
{ title: 'Total Transaksi', amound: 1_000_000, icon: 'money' },
|
||
|
|
{ title: 'Transaksi Tertagih', amound: 2_000_000, icon: 'money' },
|
||
|
|
{ title: 'Transaksi Tertagih', amound: 2_000_000, icon: 'money' },
|
||
|
|
]
|
||
|
|
|
||
|
|
export const HISTORY = [
|
||
|
|
{
|
||
|
|
title: 'Total Kunjungan',
|
||
|
|
total: 1_000_000,
|
||
|
|
icon: 'money',
|
||
|
|
report: [2190, 700],
|
||
|
|
},
|
||
|
|
{
|
||
|
|
title: 'Total User Memesan',
|
||
|
|
total: 274,
|
||
|
|
icon: 'money',
|
||
|
|
report: [211, 54],
|
||
|
|
},
|
||
|
|
]
|