this is a simple code to just run a web cam on react, but how can I stream using both cams on the web app? so I use both of cams that are connected to the PC on the same page.
function App() {
return (
<div className="App">
<div>
<Webcam />
</div>
<p>
Cam test
</p>
</div>
);
}
export default App;