import { CardReport } from '~/components/ui/card-report' import { REPORT, HISTORY } from './data' export const DashboardPage = () => { return (

Dashboard

tanggal
{REPORT.map((report) => ( ))}
{HISTORY.map((report) => ( ))}
) }