wix-style-react
Version:
11 lines (7 loc) • 337 B
JavaScript
import { previewWidgetDriverFactory as publicDriverFactory } from './PreviewWidget.uni.driver';
import { dataHooks } from './constants';
export const previewWidgetPrivateDriverFactory = base => ({
...publicDriverFactory(base),
/** Get content area node */
getContent: () => base.$(`[data-hook="${dataHooks.contentArea}"]`),
});