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
+3 -3
View File
@@ -2,7 +2,7 @@ import { createBrowserRouter, RouterProvider } from 'react-router-dom';
import { HomePage } from './pages/Home.page';
import { Consulta_API } from './pages/Consulta_api';
import { Error_404 } from './pages/404'; // Ajusta si está en otra carpeta
import { Prueba_appshell } from './pages/Prueba_appshell'; // Ajusta si está en otra carpeta
import { Grid_Dashboard } from './pages/Grid_dashboard'; // Ajusta si está en otra carpeta
const router = createBrowserRouter([
{
@@ -14,8 +14,8 @@ const router = createBrowserRouter([
element: <Consulta_API />,
},
{
path: '/prueba_appshell',
element: <Prueba_appshell />,
path: '/Grid_Dashboard',
element: <Grid_Dashboard />,
},
{
path: '*',