Files
hi-frontend/apps/admin/src/routes/dashboard/withdrawal.lazy.tsx
T
shanshanzhong147 11c3ce26a6
Build and Release / Build (push) Has been cancelled
Issue Close Require / issue-close-require (push) Has been cancelled
feat: add withdrawal management pages
2026-05-25 02:20:38 -07:00

7 lines
236 B
TypeScript

import { createLazyFileRoute } from "@tanstack/react-router";
import WithdrawalManagementPage from "@/sections/withdrawal";
export const Route = createLazyFileRoute("/dashboard/withdrawal")({
component: WithdrawalManagementPage,
});