TTMT.ManageWebGUI/src/routes/_authenticated/blacklist/index.tsx

10 lines
246 B
TypeScript
Raw Normal View History

2025-10-06 15:52:48 +07:00
import { createFileRoute } from '@tanstack/react-router'
export const Route = createFileRoute('/_authenticated/blacklist/')({
component: RouteComponent,
})
function RouteComponent() {
return <div>Hello "/_authenticated/blacklist/"!</div>
}