MCPcopy Create free account
hub / github.com/Openpanel-dev/openpanel / useAppParams

Function useAppParams

apps/start/src/hooks/use-app-params.ts:3–11  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

1import { useParams } from '@tanstack/react-router';
2
3export function useAppParams() {
4 const params = useParams({
5 strict: false,
6 });
7 return params as {
8 organizationId: string;
9 projectId: string;
10 };
11}

Callers 15

ProjectSelectorFunction · 0.90
ProjectLinkFunction · 0.90
SessionsTableFunction · 0.90
NotificationRulesFunction · 0.90
NotificationsFunction · 0.90
NotificationProviderFunction · 0.90
useGroupColumnsFunction · 0.90
index.tsxFile · 0.90
ReportEditorFunction · 0.90
CohortCriteriaBuilderFunction · 0.90
ChatRuntimeProviderFunction · 0.90
ChatDrawerFunction · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected