How to disable on movil?
nesbtesh opened this issue · 2 comments
nesbtesh commented
Is there a way to disable on Movil?
nesbtesh commented
I ended up just adding the fallow code
const StickyWrapper = ({ isSticky, children }) => { if (!isSticky) return children; return ( <Sticky topOffset={0}> {({ style }) => ( <WrapperScroll style={style}>{children}</WrapperScroll> )} </Sticky> ); };