6 lines
165 B
Plaintext
6 lines
165 B
Plaintext
import { useRouterState } from './useRouterState'
|
|
|
|
export function useCanGoBack() {
|
|
return useRouterState({ select: (s) => s.location.state.__TSR_index !== 0 })
|
|
}
|