function App() {
return (
<Routes>
<Route path="/products" >
<Route path="" element={<Products />} />
<Route path="technic" element={<Technic />} />
<Route path="clothes" element={<Clothes />} />
</Route>
</Routes>
);
}