adding default route for webapp
Some checks failed
CI / CI (push) Has been cancelled

This commit is contained in:
Roland Osborne 2025-03-09 22:53:10 -07:00
parent 7b3c490858
commit cf89dd48e5

View File

@ -59,10 +59,10 @@ const router = createHashRouter([
{
element: <Root />,
children: [
{ path: '/', element: <></> },
{ path: 'access', element: <Access /> },
{ path: 'session', element: <Session /> },
{ path: 'service', element: <Service /> },
{ path: '*', element: <></> },
],
},
])