An implementation of Conway's Game of Life using React.
The game of life is a cellular automaton model which observes how cells evolve from an initial configuration of live and dead cells.
At each iteration, the following transitions occur:
- Any live cell with fewer than two live neighbors dies, as if caused by under population.
- Any live cell with two or three live neighbors lives on to the next generation.
- Any live cell with more than three live neighbors dies, as if by overpopulation.
- Any dead cell with exactly three live neighbors becomes a live cell, as if by reproduction.