blob: f2d94795b7b5ae65f7e34b6c38e36e7e38010215 [file] [log] [blame]
const drinks = {
Cocoa: 'Cocoa',
inner: {
current: [ 'Matcha' ]
},
hello: 'Cappuccino'
};
export const {
Cocoa,
inner: {
current: [ Matcha ]
},
hello: Cappuccino
} = drinks;