I have 3 different react.js projects integrated into one project. I should display project one on the left side of the screen, project two to the right and project three at the bottom of both. But the web view content of project one is very big in height and width and will get overlapped because of it's design if I try to change its width and make it float left. I'm not supposed to change the actual code of project one. Luckily, I have a mobile screen view of the project one written using css media queries and it looks scaled down in size which is perfect for me to use it.
I need to figure out a way to display the project one mobile resolution breakpoint code I have on the left side of the screen, say width:45% float:left. Somehow make the component/project one to fit into a window(which is positioned on the left of screen like I need) with size of mobile breakpoint or less, so the component inside that window thinks that "the browser window is small and I have to display the mobile view of me", if it makes sense. I tried modifying the head tag of project one - tried changing initial-scale and width of viewport meta tag in the head tag. Nothing seems to work. Not sure if I put it the right way, but if someone could make sense out of it and help, I would highly appreciate it.