diff options
Diffstat (limited to 'app/components/graph')
-rw-r--r-- | app/components/graph/graph.tsx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/app/components/graph/graph.tsx b/app/components/graph/graph.tsx index 94a4fe1..e179cb9 100644 --- a/app/components/graph/graph.tsx +++ b/app/components/graph/graph.tsx @@ -30,13 +30,14 @@ export interface GraphProps { style?: StyleProp<ViewStyle> physics gData + nodeIds: string[] } /** * Describe your component here */ export const Graph = observer(function Graph(props: GraphProps): JSX.Element { - const { style, physics, gData } = props + const { style, physics, gData, nodeIds } = props const styles = flatten([CONTAINER, style]) const fgRef = useRef() |