# Web 360 Studio Setup

To complete the integration of the Web 360 Studio, please manually perform the following steps:

### Step 1: Add the Import in `App.jsx`

In your `src/App.jsx` file, add the following import statement:

```javascript
import { {{componentName}} } from './views/{{componentName}}';
```

Also in `src/App.jsx` add the route inside the Routes wrapper with the path of your choice:

```javascript
<HashRouter>
	<Routes>
		<Route path="web-360-studio" element={<{{componentName}} />} /> {/* New route inside Routes */}
	</Routes>
</HashRouter>

### Step 2: uncomment line 14 of the component EmbeddedIframeScene.jsx
```
