Graph + Landing Page - These are combined into one component for easy * animated transitions between the two.
| 129 | * animated transitions between the two. */ |
| 130 | |
| 131 | interface GraphProps { |
| 132 | initialAddresses: string[]; |
| 133 | initialPaths: string[]; |
| 134 | onAutoSave?: (graphInfo: PersonalGraphInfo) => void; |
| 135 | onLocalSave?: (graphInfo: SharableGraph) => void; |
| 136 | } |
| 137 | |
| 138 | /** Graph simply wraps the ReactFlowProvider and provides the initial nodes |
| 139 | * for the graph to start. This is required due to the way ReactFlow works. |
nothing calls this directly
no outgoing calls
no test coverage detected