Added User List table

This commit is contained in:
2026-01-20 22:21:06 +07:00
parent 1423d8af53
commit e02564b5cd
45 changed files with 1866 additions and 292 deletions

View File

@@ -1,9 +1,7 @@
import { createFileRoute } from '@tanstack/react-router';
import { createFileRoute, redirect } from '@tanstack/react-router';
export const Route = createFileRoute('/(app)/(auth)/account/')({
component: RouteComponent,
beforeLoad: () => {
throw redirect({ to: '/' });
},
});
function RouteComponent() {
return <div>Hello "/(app)/(auth)/account/"!</div>;
}