Bisa yuk
This commit is contained in:
25
components/dashboard/DashboardCharts.tsx
Normal file
25
components/dashboard/DashboardCharts.tsx
Normal file
@@ -0,0 +1,25 @@
|
||||
'use client';
|
||||
|
||||
import StatistikMahasiswaChart from "@/components/charts/StatistikMahasiswaChart";
|
||||
import JenisPendaftaranChart from "@/components/charts/JenisPendaftaranChart";
|
||||
import AsalDaerahChart from "@/components/charts/AsalDaerahChart";
|
||||
import ProvinsiMahasiswaChart from "@/components/chartsDashboard/ProvinsiMahasiswaPieChart";
|
||||
|
||||
export default function DashboardCharts() {
|
||||
return (
|
||||
<div className="grid grid-cols-1 md:grid-cols-2 gap-4">
|
||||
<div className="col-span-1">
|
||||
<StatistikMahasiswaChart />
|
||||
</div>
|
||||
<div className="col-span-1">
|
||||
<JenisPendaftaranChart />
|
||||
</div>
|
||||
<div className="col-span-1">
|
||||
<AsalDaerahChart />
|
||||
</div>
|
||||
<div className="col-span-1">
|
||||
<ProvinsiMahasiswaChart />
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user