top | item 36644641

(no title)

Ylmaz | 2 years ago

A lot of people don't know how to use react. The author is one of them.

discuss

order

alexbezhan|2 years ago

Author here. I've used React Table for this, which has like 20k+ stars on Github. It's slow. Imagine you want to edit a cell in a spreadsheet with 40k rows. You MUST create a new array, otherwise React won't update the DOM.

Ylmaz|2 years ago

No you just update the cell. React is extremely fast if you understand how rendering works. Avoid unnecessary rerendering of unchanged data.

aydio|2 years ago

Have you tried creating your own table in React that supports just your use case? That would've been a fairer comparison un my opinion.