Skip to content

Instantly share code, notes, and snippets.

@nikosolihin
Forked from ryanflorence/old-values.js
Created March 27, 2019 00:26
Show Gist options
  • Save nikosolihin/ab45c23344224a53668180b728822bfe to your computer and use it in GitHub Desktop.
Save nikosolihin/ab45c23344224a53668180b728822bfe 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