diff --git a/src/app/App.tsx b/src/app/App.tsx index 97a9e431..2f33a5c0 100644 --- a/src/app/App.tsx +++ b/src/app/App.tsx @@ -22291,6 +22291,143 @@ export function App({ ))} + {(["left", "right"] as const).map((side) => { + const edge = selectedPath.road.edges[side]; + const edgeLabel = side === "left" ? "Left Edge" : "Right Edge"; + + return ( +
+
{edgeLabel}
+ + + + + +
+ ); + })}