MCPcopy Create free account
hub / github.com/Zleap-AI/SAG / ProjectGraphFlow

Function ProjectGraphFlow

web/src/components/ProjectGraphFlow.tsx:56–67  ·  view source on GitHub ↗
(props: {
  graph: ProjectGraphRecord;
  language: SupportedLanguage;
  onOpenEvent: (eventId: string) => void;
  onOpenEntity: (entityId: string) => void;
})

Source from the content-addressed store, hash-verified

54};
55
56export function ProjectGraphFlow(props: {
57 graph: ProjectGraphRecord;
58 language: SupportedLanguage;
59 onOpenEvent: (eventId: string) => void;
60 onOpenEntity: (entityId: string) => void;
61}) {
62 return (
63 <ReactFlowProvider>
64 <ProjectGraphCanvas {...props} />
65 </ReactFlowProvider>
66 );
67}
68
69function ProjectGraphCanvas(props: {
70 graph: ProjectGraphRecord;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected