feat: open deal by id

This commit is contained in:
2024-12-08 23:23:34 +03:00
parent 886eef4c0d
commit 894e135be7
4 changed files with 73 additions and 14 deletions

View File

@@ -0,0 +1,6 @@
import { createFileRoute } from "@tanstack/react-router";
import { LeadsPage } from "../pages/LeadsPage";
export const Route = createFileRoute("/leads/$dealId")({
component: LeadsPage,
});