test tank

This commit is contained in:
2026-01-28 03:12:53 +08:00
parent b394175079
commit 78fd9fcda0
71 changed files with 2744 additions and 1435 deletions

View File

@@ -0,0 +1,11 @@
import { createFileRoute, redirect } from '@tanstack/react-router'
export const Route = createFileRoute('/domain/_index')({
beforeLoad: () => {
throw redirect({
to: '/domain/edit/list',
throw: true,
})
},
component: () => null,
})