Should you use multiple React UI libraries in the same project?

Viewed 23

What is the coding standard on the use of UI libraries? I have a project that mainly uses react-bootstrap but I'm considering using React Suite for future components. Is it a bad habit to mix different UI libraries?

1 Answers

Yes, you can use multiple libraries in single react js project. But sometimes it impacts conflicts on UI-Libraries default styling like font-size, font, font-color, etc. So it is preferred that use less UI libraries during creating react-app.

Related