feat: initial group entering ui
📊 Benchmark the Runtime / benchmark (pull_request) Successful in 1m7s
🚀 Lint & Test & Deploy / quality (pull_request) Failing after 45s
🚀 Lint & Test & Deploy / test-unit (pull_request) Failing after 30s
🚀 Lint & Test & Deploy / test-e2e (pull_request) Failing after 33s
🚀 Lint & Test & Deploy / deploy (pull_request) Has been skipped

This commit is contained in:
2026-05-03 18:23:40 +02:00
parent 7499b80789
commit 9c9a7b8c67
6 changed files with 141 additions and 14 deletions
+2 -1
View File
@@ -4,7 +4,8 @@ export function grid(width: number, height: number) {
const graph: Graph = {
id: Math.floor(Math.random() * 100000),
edges: [],
nodes: []
nodes: [],
groups: []
};
const amount = width * height;