feat: Add dashboard and asignaturas routes with corresponding components

This commit is contained in:
2025-08-21 07:49:01 -06:00
parent 51faa98022
commit fe471bcfc2
7 changed files with 69 additions and 104 deletions

View File

@@ -0,0 +1,9 @@
import { createFileRoute } from '@tanstack/react-router'
export const Route = createFileRoute('/_authenticated/dashboard')({
component: RouteComponent,
})
function RouteComponent() {
return <div>Hello "/_authenticated/dashboard"!</div>
}