Skip to content

Commit afdc193

Browse files
committed
Added Wall text for Pathfinder
1 parent a9a0d65 commit afdc193

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/components/PathFinding.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,10 +107,11 @@ export default class PathFindingVisualiser extends React.Component {
107107
const mClicked = this.state.mouseIsPressed;
108108

109109
return (<div className="grid">
110-
110+
<div>Click on empty nodes to place walls</div>
111111
{
112112
nodes2.map((row, rowIndex) => {
113113
return (<div>
114+
114115
{row.map((node, nodeIndex) =>
115116
<Node
116117
key={nodeIndex}

0 commit comments

Comments
 (0)