digitalkaoz / time-calc

Timesheet PWA
https://time-calc.digitalkaoz.net
MIT License
4 stars 4 forks source link

No bind in render functions #1

Closed KnisterPeter closed 7 years ago

KnisterPeter commented 7 years ago

Do not use bind in render functions like in Button.js. This will return a new function for each call resulting in too many rereenders. Prefer to bind in constructor.

digitalkaoz commented 7 years ago

:-*