-
-
Save nikosolihin/ab45c23344224a53668180b728822bfe to your computer and use it in GitHub Desktop.
This file contains 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 startDate = | |
location.state && location.state.startDate ? location.state.startDate : today | |
const prevStartRef = useRef(startDate) | |
let transitionDirection | |
if (prevStartRef.current !== startDate) { | |
transitionDirection = startDate < prevStartRef.current ? "earlier" : "later" | |
prevStartRef.current = startDate | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment