Curly braces { } versus parenthesis ( ) in ReactJS code example
Example: what are the used of curly brackets in react functions
const destructuring = ({ used }) => console.log(used);
const properties = {
unused: 1,
used: 2,
};
destructuring(properties); // 2