Guest User

Untitled

a guest
Feb 18th, 2019
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. export default (props) => {
  2. const {
  3. elementDimensions: {
  4. width = 0,
  5. height = 0
  6. } = {},
  7. isActive = false,
  8. isOutside = true,
  9. point: {
  10. x = 0,
  11. y = 0
  12. } = {}
  13. } = props;
  14.  
  15. return (
  16. <div>
  17. {`x: ${x}`}<br />
  18. ....
Add Comment
Please, Sign In to add comment