feat: Add GridDashboard component and update routing; replace Prueba_appshell with Grid_Dashboard

This commit is contained in:
2025-05-08 23:31:05 +02:00
parent 20173e9042
commit 8d35da1972
10 changed files with 412 additions and 27 deletions
+14
View File
@@ -0,0 +1,14 @@
import { Grid } from '@mantine/core';
import { AppShellWithMenu } from '../components/Appshell/Appshell';
import { GridDashboard } from '../components/Grid_dashboard';
export function Grid_Dashboard() {
return (
<AppShellWithMenu>
<GridDashboard></GridDashboard>
</AppShellWithMenu>
);
}
-12
View File
@@ -1,12 +0,0 @@
import { AppShellWithMenu } from '../components/Appshell/Appshell';
export function Prueba_appshell() {
return (
<AppShellWithMenu>
</AppShellWithMenu>
);
}