Turbolinks navigation behavior
import { urlToPageKey } from '@jho406/breezy/utils/url'
const appVisit = (...args) => {
const pageKey = urlToPageKey(args[0])
// attempt to navigate first
this.ref.current.navigateTo(pageKey)
return store
.dispatch(visit(...args))
....Last updated