21 lines
472 B
TypeScript
21 lines
472 B
TypeScript
export const REPORT = [
|
|
{ title: 'Total Transaksi', amound: '10.800.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',
|
|
counter: [2190, 700],
|
|
},
|
|
{
|
|
title: 'Total User Memesan',
|
|
total: 274,
|
|
icon: 'money',
|
|
counter: [211, 54],
|
|
},
|
|
]
|