# Image Tracking Component Setup

To complete the integration of the Image Tracking component, 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 { ImageTarget } from './views';
```

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

```javascript
<HashRouter>
	<Routes>
		<Route path="image-target" element={<ImageTarget />} /> {/* New route inside Routes */}
	</Routes>
</HashRouter>
```
