React Project Review

Hey @P1xt , can you review my React project that presents Cellular Automaton (something similar to game of life).
Here’s the code https://github.com/marzelin/cellular-automata
And here’s the running app: https://marzelin.github.io/cellular-automata/

Thanks.

Thanks for the review, I really appreciate it.

It’s one-dimensional automation (a cell state depends only on the cells preceding it), so it should work that way.
As for tests, when you run npm test, it creates bin directory, tests the files and starts watching for changes. It’s quite lame to transpile files just for testing purposes but I’ve just started with TypeScript and haven’t found the optimal way to test it yet.

Thanks again for valuable feedback.