app: Retrait élément inutile

This commit is contained in:
Mattéo Delabre 2019-11-27 02:06:55 -05:00
parent c9f0e8c5ce
commit 78afbbb00e
Signed by: matteo
GPG Key ID: AE3FBD02DC583ABB
1 changed files with 5 additions and 7 deletions

View File

@ -166,13 +166,11 @@ const edges = [
]; ];
const ResultsGraph = () => ( const ResultsGraph = () => (
<div className="ResultsGraph"> <Graph
<Graph nodes={Object.keys(nodes)}
nodes={Object.keys(nodes)} edges={edges}
edges={edges} render={id => nodes[id].name}
render={id => nodes[id].name} />
/>
</div>
); );
export default ResultsGraph; export default ResultsGraph;