7 lines
217 B
TypeScript
7 lines
217 B
TypeScript
import { createLazyFileRoute } from "@tanstack/react-router";
|
|
import WithdrawalPage from "@/sections/withdrawal";
|
|
|
|
export const Route = createLazyFileRoute("/dashboard/withdrawal/")({
|
|
component: WithdrawalPage,
|
|
});
|