how to pass variable name as props in react code example
Example 1: syntax attribute same as name react
const x = 42;
const obj = { x, y: 1337 };
console.log(obj); // result { x: 42, y: 1337 }
Example 2: syntax attribute same as name react
const x = 42;
const elm = <MyComponent {...{x}} />;