Skip to content

Commit

Permalink
wip: preintroduces component attribute to dev json
Browse files Browse the repository at this point in the history
  • Loading branch information
daniloimparato committed Sep 28, 2024
1 parent 7f644dd commit 07233e9
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions srcjs/src/lib/graphJSON.dev.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ const graphJSON = {
{ "id": "2", "size": 40, "color": "#00ff00" },
{ "id": "3", "size": 5 },
{ "id": "4", "color": "#0000ff" },
{ "id": "5", "color": "#ff00ff", "component": "abc" },
{ "id": "6", "color": "#ff00ff", "component": "abc" },
{ "id": "7", "color": "#ff00ff", "component": "def" },
{ "id": "8", "color": "#ff00ff", "component": "ghi" },
],
links: [
{ "from": "1", "to": "2" },
Expand All @@ -12,6 +16,7 @@ const graphJSON = {
{ "from": "2", "to": "3" },
{ "from": "2", "to": "4" },
{ "from": "3", "to": "4" },
{ "from": "5", "to": "6" },
]
}

Expand Down

0 comments on commit 07233e9

Please sign in to comment.