wix-style-react
Version:
wix-style-react
12 lines (11 loc) • 331 B
JavaScript
var InputAreaWithLabelCompositeDriverFactory = function InputAreaWithLabelCompositeDriverFactory(component) {
return {
getLabel: function getLabel() {
return component.find('label');
},
element: function element() {
return component;
}
};
};
export default InputAreaWithLabelCompositeDriverFactory;