Skip to content

Instantly share code, notes, and snippets.

@ryanflorence
Created March 26, 2019 22:03
Show Gist options
  • Save ryanflorence/6020934c3a9ac931cc055c79b7908aa3 to your computer and use it in GitHub Desktop.
Save ryanflorence/6020934c3a9ac931cc055c79b7908aa3 to your computer and use it in GitHub Desktop.
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