We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a9a0d65 commit afdc193Copy full SHA for afdc193
src/components/PathFinding.js
@@ -107,10 +107,11 @@ export default class PathFindingVisualiser extends React.Component {
107
const mClicked = this.state.mouseIsPressed;
108
109
return (<div className="grid">
110
-
+ <div>Click on empty nodes to place walls</div>
111
{
112
nodes2.map((row, rowIndex) => {
113
return (<div>
114
+
115
{row.map((node, nodeIndex) =>
116
<Node
117
key={nodeIndex}
0 commit comments