|
@@ -1,3 +1,4 @@
|
|
|
+import Login from '../components/pages/Login'
|
|
|
import Dashboard from '../components/pages/Dashboard'
|
|
|
import ContainersList from '../components/pages/ContainersList'
|
|
|
import MyTasksList from '../components/pages/MyTasksList'
|
|
@@ -5,7 +6,7 @@ import TasksList from '../components/pages/TasksList'
|
|
|
import UsersList from '../components/pages/UsersList'
|
|
|
import PermissionsList from '../components/pages/PermissionsList'
|
|
|
import About from '../components/pages/About'
|
|
|
-import Page404 from '../components/pages/404'
|
|
|
+// import Page404 from '../components/pages/404'
|
|
|
|
|
|
// import DockerIcon from '../components/icons/DockerIcon'
|
|
|
// import TaskIcon from '../components/icons/TaskIcon'
|
|
@@ -15,6 +16,10 @@ import Page404 from '../components/pages/404'
|
|
|
// import AboutIcon from '../components/icons/AboutIcon'
|
|
|
|
|
|
const routes = [
|
|
|
+ {
|
|
|
+ path: '/login',
|
|
|
+ component: Login
|
|
|
+ },
|
|
|
{
|
|
|
path: '/dashboard',
|
|
|
component: Dashboard,
|
|
@@ -50,10 +55,10 @@ const routes = [
|
|
|
component: About,
|
|
|
title: 'Acerca de'
|
|
|
},
|
|
|
- {
|
|
|
- component: Page404,
|
|
|
- title: 'Recurso no encontrado'
|
|
|
- }
|
|
|
+ // {
|
|
|
+ // component: Page404,
|
|
|
+ // title: 'Recurso no encontrado'
|
|
|
+ // }
|
|
|
]
|
|
|
|
|
|
export default routes
|