Skip to content
This repository has been archived by the owner on Apr 6, 2024. It is now read-only.

Commit

Permalink
Merge pull request #10 from andrmaz/develop
Browse files Browse the repository at this point in the history
fix: change keys generation
  • Loading branch information
andrmaz committed Sep 9, 2023
2 parents a079102 + b4cc8e9 commit f08a0cb
Show file tree
Hide file tree
Showing 9 changed files with 2 additions and 105 deletions.
44 changes: 0 additions & 44 deletions dist/assets/index-0c68cc06.js

This file was deleted.

1 change: 0 additions & 1 deletion dist/assets/index-425bf718.css

This file was deleted.

15 changes: 0 additions & 15 deletions dist/index.html

This file was deleted.

12 changes: 0 additions & 12 deletions dist/population_state_10x10_36.txt

This file was deleted.

13 changes: 0 additions & 13 deletions dist/population_state_11x5_20.txt

This file was deleted.

6 changes: 0 additions & 6 deletions dist/population_state_4x8_3.txt

This file was deleted.

11 changes: 0 additions & 11 deletions dist/population_state_9x7_18.txt

This file was deleted.

1 change: 0 additions & 1 deletion dist/vite.svg

This file was deleted.

4 changes: 2 additions & 2 deletions src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,11 @@ function App() {
{generation =>
generation.map((axis, index) => {
return (
<React.Fragment key={index + Math.random()}>
<React.Fragment key={index}>
{axis.map((state, index) => {
return (
<Cell
key={index + Math.random()}
key={index}
state={state}
rows={generation.length}
cols={generation[0].length}
Expand Down

0 comments on commit f08a0cb

Please sign in to comment.