react-sticky
react-sticky copied to clipboard
How to disable on movil?
Is there a way to disable on Movil?
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> ); };
I am closing this issue Use: #170
The above solution doesn't work well with styled-component