mirror of
https://github.com/perfect-panel/ppanel-web.git
synced 2026-02-06 03:30:25 -05:00
12 lines
277 B
TypeScript
12 lines
277 B
TypeScript
import Billing from '@/components/billing';
|
|
import Statistics from '@/components/dashboard/statistics';
|
|
|
|
export default function Dashboard() {
|
|
return (
|
|
<div className='flex flex-1 flex-col gap-3'>
|
|
<Statistics />
|
|
<Billing type='dashboard' />
|
|
</div>
|
|
);
|
|
}
|