Summary of common components or tools for React project development

As the title

UI type

styled-components

insert image description here

https://styled-components.com/
https://github.com/styled-components/styled-components

styled-components is a way to combine css and react components, which allows us to write css code directly in the js file and
use the state or properties of react to dynamically change the style. But there are also some disadvantages, such as
the state or properties of react can be used to dynamically change the style. But there are also some disadvantages, such as:

  • styled-components requires third-party libraries to be installed, and new syntax and conventions to learn.
  • styled-components can impact performance and debugging because it generates and injects styles at runtime.
  • styled-components may cause style and logic to be mixed together, which is not conducive to code readability and maintainability

Number of data

network class

Communication

other

reference article

Guess you like

Origin blog.csdn.net/SCHOLAR_II/article/details/131828164