1 import { getRestaurantsFrom } from "crous-mobile"; 2 3 const restaurants = await getRestaurantsFrom("lille"); 4 5 for (const restaurant of restaurants) { 6 console.log(restaurant.title); 7 console.log("->", restaurant.address); 8 }