Render Methods
(instance, props, prevProps = {})
| 124 | /** Render Methods */ |
| 125 | |
| 126 | function applyClippingRectangleProps(instance, props, prevProps = {}) { |
| 127 | applyNodeProps(instance, props, prevProps); |
| 128 | |
| 129 | instance.width = props.width; |
| 130 | instance.height = props.height; |
| 131 | } |
| 132 | |
| 133 | function applyGroupProps(instance, props, prevProps = {}) { |
| 134 | applyNodeProps(instance, props, prevProps); |
nothing calls this directly
no test coverage detected