Updated spanish routes to english

This commit is contained in:
Jose Selesan
2026-09-25 10:10:28 -03:00
parent 94c353f4f2
commit e736ed3547
6 changed files with 44 additions and 44 deletions

View File

@@ -0,0 +1,15 @@
import { useParams } from '@tanstack/react-router'
import { createFileRoute } from '@tanstack/react-router'
import { AbsenceNotifyProvider } from '../features/absence-notify/AbsenceNotifyProvider'
import { AbsenceNotifyView } from '../features/absence-notify/AbsenceNotifyView'
export const Route = createFileRoute('/report-absence/$token')({
component: () => {
const { token } = useParams({ from: '/report-absence/$token' })
return (
<AbsenceNotifyProvider token={token}>
<AbsenceNotifyView />
</AbsenceNotifyProvider>
)
},
})