Destructuring can reach into nested structures. Match the structure you're extracting from.
const user = {
name: "Alice",
address: { city: "Seattle" }
};
const { address: { city } } = user;
console.log(city); // "Seattle"
You can destructure as deeply as the data is nested.