|
|
|
|
|
by nullobject
3061 days ago
|
|
Thanks! It's nice that react is just a view library, so you are free to choose the rest of your stack to best suit your app (i.e. a game). The only thing I would point out is that you should use immutable data structures, so that you don't re-render parts of your view unnecessarily. There are ways to handle this without immutable data structures (i.e. componentShouldUpdate), but it's more of a pain IMHO. |
|