I would open a similar topic so I'll leave my opinion here.
This depends a lot on the frameworks involved.
Jquery + Angular: Not a good practice
angular is a reactive framework. Internally it uses a timeout that looks at the scope variables. Whenever something changes it refreshes the page with content. You do not access the DOM directly and use the single page concept which greatly improves application performance.
jquery has a totally different approach. It uses DOM access to retrieve and set information. This access is not recommended due to loss of application performance. I will not go into the merits of how it works because I would be dealing with a topic that is not about the topic.
React + Jquery: Not good practice
react is a template-oriented framework. It also has the concept of single page and is reactive as the angular. I do not consider it a good practice precisely because the framework itself already has everything you need. In addition it is lighter than the angular because its core is smaller. So it does not make sense to include another js framework to do something that react already does.
React + Angular: Not a good practice
Even though both are reactive and using concept single page the structure and form of development is different. Mixing both can generate a fruit salad that will be more confusing than helping. It is worth remembering that angular development is particularly fast and has more features. However the react is lighter in addition to being used and maintained by facebook. I do not even need to dig deeper to say it's a good choice, too.
In summary
These are some of the top frameworks available on the market. The ones I quoted are heavily used in the front-end community, have good documentation with several examples available on the net. So you do not have to use more than one.
I know how the IT market works. Delivery pressure and etc. Most change the course of the project because someone does not know of the resource used is a team problem. If you are a programmer you have an obligation to know all the technologies used by the team precisely so as not to have this type of problem. Now if it is a bean with rice and the company accepts it is because the company is not focused on the quality of source code and later on the quality of the project for the client.