Created
March 26, 2019 22:03
-
-
Save ryanflorence/6020934c3a9ac931cc055c79b7908aa3 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