wix-style-react
Version:
11 lines (9 loc) • 325 B
JavaScript
export const textDriverFactory = component => ({
/** returns the component element */
element: () => component,
/** returns the component text */
getText: async () => component.getText(),
/** returns the component tag name */
getTagName: async () => component.getTagName(),
});
export default textDriverFactory;