JSFiddle - React, Tailwind, and code Playground

by Leolloyd Andrade

JavaScript

const pos = {
  x: 1,
  y: 2
};
const pos2 = ({
  left: x,
  top: y
} = pos);
console.log(pos2);