+
+ Cut the wires with the following properties! (keyboard 1 to 9)
+
{questions.map((question, i) => (
{question.toString()}
))}
-
+
{new Array(wires.length).fill(0).map((_, i) => {
const isCorrectWire = checkWire(i + 1);
const color = hasAugment && !isCorrectWire ? Settings.theme.disabled : Settings.theme.primary;
return (
-
- {i + 1}
-
+
+ {i + 1}
+
);
})}
-
- {new Array(8).fill(0).map((_, i) => (
-
-
+ {new Array(8).fill(0).map((_, i) => (
+
{wires.map((wire, j) => {
if ((i === 3 || i === 4) && cutWires[j]) {
- return ;
+ return ;
}
const isCorrectWire = checkWire(j + 1);
const wireColor =
hasAugment && !isCorrectWire ? Settings.theme.disabled : wire.colors[i % wire.colors.length];
return (
-
- |{wire.tpe}|
-
+
+ |{wire.tpe}|
+
);
})}
-
-
- ))}
+
+ ))}
+
-