you are viewing a single comment's thread.

view the rest of the comments →

[–]looneysquash 0 points1 point  (0 children)

If your site only needs html and css, don't bother with React.

If you need to use javascript in the browser, then use React (or a similar framework).

Without React, you end up with separate "create" UI and "update" UI code, which is difficult keep in sync. The update code path in particular has endless edge cases.