#9: make the user-chosen path more clear to see.
Some checks reported errors
continuous-integration/drone/push Build encountered an error
continuous-integration/drone/pr Build encountered an error

This commit is contained in:
Manuel Friedli 2025-01-11 00:29:16 +01:00
parent 78b8772eff
commit 9efd718c9c
Signed by: manuel
GPG key ID: 41D08ABA75634DA1
5 changed files with 137 additions and 12 deletions

View file

@ -25,6 +25,7 @@ export default function Home() {
<h1>The Maze ({state.maze!.width}x{state.maze!.height}, Algorithm: {state.maze!.algorithm},
ID: {state.maze!.id})</h1>
<input type={"checkbox"}
checked={state.showSolution}
onChange={(e) => {
dispatch(actionToggledShowSolution(e.target.checked));
}}