Files
yoga/src/Layout.js

11 lines
135 B
JavaScript
Raw Normal View History

2014-03-30 17:12:38 -07:00
function computeLayout(node) {
return {
top: 0,
left: 0,
width: node.style.width,
height: node.style.height
};
}