wix-style-react
Version:
10 lines (8 loc) • 397 B
JavaScript
import { customModalLayoutDriverFactory } from '../CustomModalLayout.uni.driver';
import { baseModalLayoutPrivateDriverFactory } from '../../BaseModalLayout/test/BaseModalLayout.private.uni.driver';
export const customModalLayoutPrivateDriverFactory = (base, body) => {
return {
...baseModalLayoutPrivateDriverFactory(base, body),
...customModalLayoutDriverFactory(base, body),
};
};