Hello,
I want to integrate three js within the simulation tab in the image below.
I tried something, but it doesn’t work as I want.
I have the following code for the “simulation” page.
import React, { Component } from "react";
import ReactDOM from "react-dom";
import * as THREE from "three";
export default function Simulation() {
class App extends Component {
componentDidMount() {
// three js code
}
render() {
return <div ref={(ref) => (this.mount = ref)} />;
}
}
const rootElement = document.getElementById("root");
ReactDOM.render(<App />, rootElement);
}
And I obtain the following result when I click the simulation tab. The problem is that I want to keep the sidebar and all the other components of the page. I want the three js part to be like a “window” inside my react webpage.
Moreover, I don’t know if it’s possible, but I want to also insert react component inside the three js window.
I’m new to react, three js and front end more generally, so I’m a bit lost. Thank you in advance for your answer.