I am working on a project with Micro Front End architecture. There will be several Micro Front Ends and different team works with different MFE.
Are there any technical difficulties to use the class component and functional component together in a react project? Or it is just bad practice?
This is purely opinion based question, so I will give opinion based answer.
There are no technical difficulties in using both of these types of components together. You can use them at the same time in single project. Is it a bad practice? I do not think so. I guess it depends on what those components ought to do. My dummy, representational components are often functional while components that are connected to redux are class components. But, I guess other people would disagree with me.