refactor(dashboard): correct component import and usage in DashboardPage

This commit is contained in:
OlgunR
2025-11-24 14:49:10 +01:00
parent de019d5825
commit df84ad4afd

View File

@@ -1,6 +1,6 @@
import { CONFIG } from 'src/config-global';
import { OverviewAnalyticsView as DashboardView } from 'src/sections/overview/view';
import { OverviewAnalyticsView as DashboardView, OverviewAnalyticsView } from 'src/sections/overview/view';
// ----------------------------------------------------------------------
@@ -14,7 +14,7 @@ export default function Page() {
/>
<meta name="keywords" content="react,material,kit,application,dashboard,admin,template" />
<DashboardView />
<OverviewAnalyticsView />
</>
);
}