Created
July 29, 2020 05:53
-
-
Save itsmunim/944c05b5ba87a48803ecd9cab38862e7 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const ref = React.createRef(); | |
// ... | |
return ( | |
<ScrollToStick applyOn={ref} offset={60}> | |
<div className="header-wrap" ref={ref}> | |
<header> | |
<div className="logo"></div> | |
<div className="brand-title"></div> | |
</header> | |
<div class="menu-strip"> | |
... | |
</div> | |
</div> | |
</ScrollToStick> | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment