@shopgate/engage
Version:
Shopgate's ENGAGE library.
16 lines • 336 B
JavaScript
import React from 'react';
import noop from 'lodash/noop';
export const ViewContext = /*#__PURE__*/React.createContext({
top: null,
bottom: null,
ariaHidden: false,
set: noop,
setTop: noop,
setBottom: noop,
setContentRef: noop,
getContentRef: () => ({
current: null
}),
scrollTop: noop,
setAriaHidden: noop
});