How to do typical tasks in a web application on React JS
How to make simple typical, frequently encountered tasks in a web application on React JS
When writing web applications, the interface often has to solve typical tasks of managing elements on a form, hide, make not available, filtering, searching, sorting, etc. Studying React JS I began to prepare a library of similar solutions, and I’ll present it below. How this works for a person who learns React will be clear with examples that are posted on GitHub. Link to a running application on GitHub
In each example there is a link to the source code. Examples can be used as a starting point for writing an application task. If possible, I will expand the list of examples. Examples are now made for: ')
How to hide, make not available elements on the form
Editing data in the table
View data in the table and edit in a separate form
The filter in the element Select - analog autocomplete
Highlighting entries in the table
A combobox with an id, as a rule, when you select an element in a select element, you need its id in the application
Filter in the table
Sort in the table
From each example there is a link to the source code.
The project can be downloaded and run locally: npm install npm run dev